From afaa2831885caac6cae3ef721fe2dd06206434a2 Mon Sep 17 00:00:00 2001 From: Dan Witte Date: Mon, 28 Sep 2009 09:54:04 -0700 Subject: [PATCH] Re-enable test for other arches, since it's just windows that's borking. --- js/ctypes/tests/unit/test_jsctypes.js.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/ctypes/tests/unit/test_jsctypes.js.in b/js/ctypes/tests/unit/test_jsctypes.js.in index 0e5c704efca0..3e0acbef2cf9 100644 --- a/js/ctypes/tests/unit/test_jsctypes.js.in +++ b/js/ctypes/tests/unit/test_jsctypes.js.in @@ -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); }