diff options
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 981f4136..c72b1e86 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -166,11 +166,12 @@ class T(unittest.TestCase): int i = k > 100; // Should be an int, not a bool! int j = i << 6; j >>= 1; + j = j ^ 5; printf("*%d,%d,%d,%d,%d,%d,%d*\\n", x, y, z, w, k, i, j); return 0; } ''' - self.do_test(src, '*5,23,10,19,101,1,32*') + self.do_test(src, '*5,23,10,19,101,1,37*') def test_floatvars(self): src = ''' |