mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-23 19:09:49 +00:00
Comment out other occurence of failing test as well for now, see bug 401781, r+sr=biesi via IRC
This commit is contained in:
parent
09fbc2d302
commit
2710cb8485
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user