Comment out other occurence of failing test as well for now, see bug 401781, r+sr=biesi via IRC

This commit is contained in:
kairo@kairo.at 2007-11-13 07:30:29 -08:00
Родитель 09fbc2d302
Коммит 2710cb8485
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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.