Re-enable test for other arches, since it's just windows that's borking.

This commit is contained in:
Dan Witte 2009-09-28 09:54:04 -07:00
Родитель 598716340a
Коммит afaa283188
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -222,7 +222,9 @@ function run_int64_tests(library) {
// test the range of unsigned. (we can reuse the signed C function
// here, since it's binary-compatible.)
var test_ui64_ui64 = library.declare("test_i64_i64", Types.DEFAULT, Types.UINT64, Types.UINT64);
// do_check_eq(test_ui64_ui64(0xffffffffffff0000), 0xffffffffffff0000);
#ifndef XP_WIN
do_check_eq(test_ui64_ui64(0xfffffffffffff00), 0xfffffffffffff000);
#endif
do_check_throws(function () { test_ui64_ui64(0x10000000000000000); }, TypeError);
do_check_throws(function () { test_ui64_ui64(-1); }, TypeError);
}