From 9fd2a227ff513353ddc34e7d401b19ad2424ce77 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 20 Feb 2014 22:17:56 +0100 Subject: [PATCH] groovy: not-so-fast performance test excluded from the suite --- .../org/jetbrains/plugins/groovy/FastGroovyTestSuite.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/groovy/test/org/jetbrains/plugins/groovy/FastGroovyTestSuite.java b/plugins/groovy/test/org/jetbrains/plugins/groovy/FastGroovyTestSuite.java index 9635c3885e07..11597e915fe4 100644 --- a/plugins/groovy/test/org/jetbrains/plugins/groovy/FastGroovyTestSuite.java +++ b/plugins/groovy/test/org/jetbrains/plugins/groovy/FastGroovyTestSuite.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2012 JetBrains s.r.o. + * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,6 +22,7 @@ import junit.framework.TestSuite; import org.jetbrains.plugins.groovy.compiler.GppCompilerTest; import org.jetbrains.plugins.groovy.compiler.GroovyCompilerTest; import org.jetbrains.plugins.groovy.compiler.GroovyDebuggerTest; +import org.jetbrains.plugins.groovy.lang.GroovyStressPerformanceTest; /** * @author Max Medvedev @@ -44,6 +45,7 @@ public class FastGroovyTestSuite { private static boolean isSlow(Class aClass) { return aClass.equals(GroovyDebuggerTest.class) || + aClass.equals(GroovyStressPerformanceTest.class) || aClass.getName().startsWith(GroovyCompilerTest.class.getName()) || aClass.getName().startsWith(GppCompilerTest.class.getName()); }