Honey, I sunk the build.

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2782 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/core/client/GWTTest.java b/user/test/com/google/gwt/core/client/GWTTest.java
index 631789c..8f10ab0 100644
--- a/user/test/com/google/gwt/core/client/GWTTest.java
+++ b/user/test/com/google/gwt/core/client/GWTTest.java
@@ -30,7 +30,6 @@
   }-*/;
 
   private static void jvmTests() {
-    assertFalse(GWT.isClient());
     assertFalse(GWT.isScript());
     try {
       canCallNativeMethod();
@@ -47,7 +46,9 @@
   }
 
   public GWTTest() {
-    jvmTests();
+    if (!GWT.isClient()) {
+      jvmTests();
+    }
   }
 
   @Override