diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-07-07 17:58:35 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-07-07 17:58:35 -0700 |
commit | 1a599856b45599914ed4ee371eb24665024051e9 (patch) | |
tree | b114e405689c8e5db9fd97b29b4310ae03aa916b /tests/runner.py | |
parent | fa0aeac56490a20784f3a72fc4fac68a3440503a (diff) |
comment about test_cases
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 6db71027..61c2057a 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2486,8 +2486,9 @@ if 'benchmark' not in sys.argv: 'hello python world!\n[0, 2, 4, 6]\n5\n22\n5.470000', args=['-S', '-c' '''print "hello python world!"; print [x*2 for x in range(4)]; t=2; print 10-3-t; print (lambda x: x*2)(11); print '%f' % 5.47''']) - ### Test cases in separate files - + # Test cases in separate files. Note that these files may contain invalid .ll! + # They are only valid enough for us to read for test purposes, not for llvm-as + # to process. def test_cases(self): global CHECK_OVERFLOWS; CHECK_OVERFLOWS = 0 if LLVM_OPTS: return self.skip() # Our code is not exactly 'normal' llvm assembly |