From 1811181dc1390410b63cb6b7fc0cb550895a4c82 Mon Sep 17 00:00:00 2001 From: Vladislav Rassokhin Date: Wed, 9 Oct 2024 22:31:33 +0200 Subject: [PATCH] [test framework] remove @HardwareAgentRequired annotation: drop unused properties GitOrigin-RevId: bdb107d1783beb7a9ce6fc95f5bd012e818df736 --- .../testFramework/core/src/com/intellij/TestCaseLoader.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/platform/testFramework/core/src/com/intellij/TestCaseLoader.java b/platform/testFramework/core/src/com/intellij/TestCaseLoader.java index 62ab3477ac03..f336e96829e2 100644 --- a/platform/testFramework/core/src/com/intellij/TestCaseLoader.java +++ b/platform/testFramework/core/src/com/intellij/TestCaseLoader.java @@ -43,7 +43,6 @@ public class TestCaseLoader { public static final String RUN_ONLY_AFFECTED_TEST_FLAG = "idea.run.only.affected.tests"; public static final String TEST_RUNNERS_COUNT_FLAG = "idea.test.runners.count"; public static final String TEST_RUNNER_INDEX_FLAG = "idea.test.runner.index"; - public static final String HARDWARE_AGENT_REQUIRED_FLAG = "idea.hardware.agent.required"; public static final String VERBOSE_LOG_ENABLED_FLAG = "idea.test.log.verbose"; public static final String FAIR_BUCKETING_FLAG = "idea.fair.bucketing"; public static final String IS_TESTS_DURATION_BUCKETING_ENABLED_FLAG = "idea.tests.duration.bucketing.enabled"; @@ -55,7 +54,6 @@ public class TestCaseLoader { private static final boolean INCLUDE_UNCONVENTIONALLY_NAMED_TESTS = Boolean.getBoolean(INCLUDE_UNCONVENTIONALLY_NAMED_TESTS_FLAG); private static final boolean RUN_ONLY_AFFECTED_TESTS = Boolean.getBoolean(RUN_ONLY_AFFECTED_TEST_FLAG); private static final boolean RUN_WITH_TEST_DISCOVERY = System.getProperty("test.discovery.listener") != null; - private static final boolean HARDWARE_AGENT_REQUIRED = Boolean.getBoolean(HARDWARE_AGENT_REQUIRED_FLAG); public static final boolean IS_VERBOSE_LOG_ENABLED = Boolean.getBoolean(VERBOSE_LOG_ENABLED_FLAG); public static final int TEST_RUNNERS_COUNT = Integer.parseInt(System.getProperty(TEST_RUNNERS_COUNT_FLAG, "1"));