Delete TestOnlyInNormalExecutionMode

No longer used.

PiperOrigin-RevId: 303537439
diff --git a/src/test/java/com/google/devtools/build/lib/analysis/ConfigurationsForLateBoundTargetsTest.java b/src/test/java/com/google/devtools/build/lib/analysis/ConfigurationsForLateBoundTargetsTest.java
index b17059a..4ffaaa1 100644
--- a/src/test/java/com/google/devtools/build/lib/analysis/ConfigurationsForLateBoundTargetsTest.java
+++ b/src/test/java/com/google/devtools/build/lib/analysis/ConfigurationsForLateBoundTargetsTest.java
@@ -29,7 +29,6 @@
 import com.google.devtools.build.lib.packages.Attribute;
 import com.google.devtools.build.lib.skyframe.util.SkyframeExecutorTestUtils;
 import com.google.devtools.build.lib.testutil.Suite;
-import com.google.devtools.build.lib.testutil.TestOnlyInNormalExecutionMode;
 import com.google.devtools.build.lib.testutil.TestRuleClassProvider;
 import com.google.devtools.build.lib.testutil.TestSpec;
 import org.junit.Before;
@@ -45,7 +44,6 @@
  * (ConfiguredTargetFunction is a Skyframe function). And the Skyframe library doesn't know anything
  * about latebound attributes. So we need to place these properly under the analysis package.
  */
-@TestOnlyInNormalExecutionMode // TODO(b/67651960): fix or justify disabling.
 @TestSpec(size = Suite.SMALL_TESTS)
 @RunWith(JUnit4.class)
 public class ConfigurationsForLateBoundTargetsTest extends AnalysisTestCase {
diff --git a/src/test/java/com/google/devtools/build/lib/testutil/BUILD b/src/test/java/com/google/devtools/build/lib/testutil/BUILD
index bc09427..3ffd08a 100644
--- a/src/test/java/com/google/devtools/build/lib/testutil/BUILD
+++ b/src/test/java/com/google/devtools/build/lib/testutil/BUILD
@@ -35,7 +35,6 @@
         "Scratch.java",
         "Suite.java",
         "TestFileOutErr.java",
-        "TestOnlyInNormalExecutionMode.java",
         "TestRuleClassProvider.java",
         "TestSpec.java",
         "TimestampGranularityUtils.java",
diff --git a/src/test/java/com/google/devtools/build/lib/testutil/TestOnlyInNormalExecutionMode.java b/src/test/java/com/google/devtools/build/lib/testutil/TestOnlyInNormalExecutionMode.java
deleted file mode 100644
index 3c2c14b..0000000
--- a/src/test/java/com/google/devtools/build/lib/testutil/TestOnlyInNormalExecutionMode.java
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2017 The Bazel Authors. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//    http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package com.google.devtools.build.lib.testutil;
-
-/**
- * Annotation interface to prevent a test case from being executed in a special internal mode. This
- * only applies to whole test classes, not individual methods. For individual methods, test on the
- * case's {@code TestConstants#InternalTestExecutionMode}.
- */
-public @interface TestOnlyInNormalExecutionMode {}