From 64ba845ab6a2f74c461b0416a818fb19ed475b50 Mon Sep 17 00:00:00 2001 From: "kairo@kairo.at" Date: Tue, 13 Nov 2007 07:30:29 -0800 Subject: [PATCH] Comment out other occurence of failing test as well for now, see bug 401781, r+sr=biesi via IRC --- xpcom/tests/unit/test_streams.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/tests/unit/test_streams.js b/xpcom/tests/unit/test_streams.js index 2f6cf6fdad9..311b0197d85 100644 --- a/xpcom/tests/unit/test_streams.js +++ b/xpcom/tests/unit/test_streams.js @@ -116,7 +116,7 @@ function test_binary_streams() { os.write64(1024); os.write64(HugeNum); os.writeFloat(2.5); - os.writeDouble(Math.SQRT2); +// os.writeDouble(Math.SQRT2); os.writeStringZ("Mozilla"); os.writeWStringZ("Gecko"); os.writeBytes(HelloStr, HelloStr.length); @@ -135,7 +135,7 @@ function test_binary_streams() { do_check_eq(is.read64(), 1024); do_check_eq(is.read64(), HugeNum); do_check_eq(is.readFloat(), 2.5); - do_check_eq(is.readDouble(), Math.SQRT2); +// do_check_eq(is.readDouble(), Math.SQRT2); do_check_eq(is.readCString(), "Mozilla"); do_check_eq(is.readString(), "Gecko"); // Remember, we wrote HelloStr twice - once as a string, and then as an array.