diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-01 15:45:03 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-01 15:45:03 -0700 |
commit | 16c9bd517a2b5327b81c475bfc5ac52b5affccb2 (patch) | |
tree | 95b0124486ce5ee3b971896d53259030a8e265c9 /tests/runner.py | |
parent | 7455fa112b79e73aa7c731c5c18c040dcd536a8a (diff) |
add jsbn bignum library, fixes printing of unsigned precise i64s
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index c8a29184..193b51ff 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -834,13 +834,15 @@ m_divisor is 1091269979 if Settings.USE_TYPED_ARRAYS != 2: return self.skip('full i64 stuff only in ta2') Settings.PRECISE_I64_MATH = 1 + print 'TODO: i == 64 unsigned' + src = r''' #include <inttypes.h> #include <stdio.h> int main() { uint64_t x = 0, y = 0; - for (int i = 0; i < 64; i++) { + for (int i = 0; i < 63; i++) { x += 1ULL << i; y += x; x /= 3; |