Remove @HardwareAgentRequired annotation

All Perf Unit tests are run on the hardware agents to ensure stability of the metrics.
So the annotation is not needed anymore and it doesn't work on JUnit5 tests so the same test is run twice and since test execution time depends on the bucketing, metrics are jumping.

GitOrigin-RevId: fc83a368447d09d6ad1b269c88fe4f6c79067a91
This commit is contained in:
Maxim.Kolmakov
2024-09-13 15:05:49 +02:00
committed by intellij-monorepo-bot
parent 187cb1ec16
commit c6d31a553c
11 changed files with 0 additions and 64 deletions

View File

@@ -15,7 +15,6 @@
*/
package com.intellij.util.xml;
import com.intellij.idea.HardwareAgentRequired;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.command.WriteCommandAction;
import com.intellij.openapi.module.Module;
@@ -32,7 +31,6 @@ import org.jetbrains.annotations.NotNull;
import java.io.IOException;
import java.util.List;
@HardwareAgentRequired
public class DomPerformanceTest extends DomHardCoreTestCase {
public void testVisitorPerformance() {
Ref<MyElement> ref = new Ref<>();