diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-10 14:46:47 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-10 14:46:47 -0800 |
commit | 27a31b4e4661e8ca95e4c3e28743a1d8abd64d0b (patch) | |
tree | 54e77afd4200199a2ba00a187afdda0d81e347bb /tests | |
parent | 008d2433826b0ac7d4bdd5556bd4c6b4f1351c73 (diff) |
cleanup and fixes for i64
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runner.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index acee1983..002d9376 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -421,12 +421,17 @@ if 'benchmark' not in str(sys.argv): printf("*%Ld*\n", returner1()); printf("*%Ld*\n", returner2(30)); - // Make sure in params are not modified + int64_t maxx = -1ULL; + //printf("*%Ld*\n", maxx); + + // Make sure params are not modified if they shouldn't be int64_t t = 123; modifier1(t); printf("*%Ld*\n", t); modifier2(t); printf("*%Ld*\n", t); + + // return 0; } ''' |