Disables SingleScriptLinkerTest by default, because it only
works if the testing context results in a single-permutation
compile.

Review by: bobv (desk check)


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@4109 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/core/ext/LinkerSuite.java b/user/test/com/google/gwt/core/ext/LinkerSuite.java
index 290a2f6..eacccab 100644
--- a/user/test/com/google/gwt/core/ext/LinkerSuite.java
+++ b/user/test/com/google/gwt/core/ext/LinkerSuite.java
@@ -17,7 +17,6 @@
 
 import com.google.gwt.core.ext.test.IFrameLinkerTest;
 import com.google.gwt.core.ext.test.LinkerTest;
-import com.google.gwt.core.ext.test.SingleScriptLinkerTest;
 import com.google.gwt.core.ext.test.XSLinkerTest;
 import com.google.gwt.junit.tools.GWTTestSuite;
 
@@ -34,9 +33,12 @@
     // $JUnit-BEGIN$
     suite.addTestSuite(IFrameLinkerTest.class);
     suite.addTestSuite(XSLinkerTest.class);
-    suite.addTestSuite(SingleScriptLinkerTest.class);
+    /*
+     *  Note: Single-script linking is disabled by default, because
+     *  it only works when the test is run for a single permutation.
+     */
+    //suite.addTestSuite(SingleScriptLinkerTest.class);
     // $JUnit-END$
-    
     return suite;
   }
 }