aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <azakai@mozilla.com>2010-11-13 14:45:22 -0800
committerAlon Zakai <azakai@mozilla.com>2010-11-13 14:45:22 -0800
commit1b153b74662b198f99a1b7e21d8bc60f562f6feb (patch)
treec82af930836346c2da71d62ca10b5db749865e9f /tests/runner.py
parentcc66f5d1e8e2aa9c0fc57a78b1b896f0a6cb8581 (diff)
rename sauer to cubescript
--HG-- rename : tests/sauer/README => tests/cubescript/README rename : tests/sauer/command.cpp => tests/cubescript/command.cpp rename : tests/sauer/command.h => tests/cubescript/command.h rename : tests/sauer/tools.h => tests/cubescript/tools.h
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 42a63afc..9c0db5f2 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -960,7 +960,7 @@ if 'benchmark' not in sys.argv:
self.do_test(src, output, ['3', '16'])
def test_dlmalloc(self):
- assert COMPILER_ENGINE != SPIDERMONKEY_ENGINE # See sauer test
+ assert COMPILER_ENGINE != SPIDERMONKEY_ENGINE # See cubescript test
src = open(path_from_root(['tests', 'dlmalloc.c']), 'r').read()
self.do_test(src, '*1,0*')
@@ -971,12 +971,12 @@ if 'benchmark' not in sys.argv:
src = open(path_from_root(['tests', 'fasta.cpp']), 'r').read()
self.do_test(src, j, [str(i)], lambda x: x.replace('\n', '*'), no_build=i>1)
- def test_sauer(self):
+ def test_cubescript(self):
# XXX Warning: Running this in SpiderMonkey can lead to an extreme amount of memory being
# used, see Mozilla bug 593659.
assert COMPILER_ENGINE != SPIDERMONKEY_ENGINE
- self.do_test(path_from_root(['tests', 'sauer']), '*\nTemp is 33\n9\n5\nhello, everyone\n*', main_file='command.cpp')
+ self.do_test(path_from_root(['tests', 'cubescript']), '*\nTemp is 33\n9\n5\nhello, everyone\n*', main_file='command.cpp')
def test_gcc_unmangler(self):
self.do_test(path_from_root(['third_party']), '*d_demangle(char const*, int, unsigned int*)*', args=['_ZL10d_demanglePKciPj'], main_file='gcc_demangler.c')