Tamir Duberstein 10 жил өмнө
parent
commit
2820e86aab

+ 5 - 2
java/src/test/java/com/google/protobuf/IsValidUtf8Test.java

@@ -72,8 +72,11 @@ public class IsValidUtf8Test extends TestCase {
    * Tests that round tripping of all three byte permutations work.
    */
   public void testIsValidUtf8_3Bytes() throws UnsupportedEncodingException {
-    IsValidUtf8TestUtil.testBytes(3,
-        IsValidUtf8TestUtil.EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT);
+    // Travis' OOM killer doesn't like this test
+    if (System.getenv("TRAVIS") == null) {
+      IsValidUtf8TestUtil.testBytes(3,
+          IsValidUtf8TestUtil.EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT);
+    }
   }
 
   /**