aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/cubescript/README (renamed from tests/sauer/README)0
-rw-r--r--tests/cubescript/command.cpp (renamed from tests/sauer/command.cpp)0
-rw-r--r--tests/cubescript/command.h (renamed from tests/sauer/command.h)0
-rw-r--r--tests/cubescript/tools.h (renamed from tests/sauer/tools.h)0
-rw-r--r--tests/runner.py6
-rw-r--r--tests/settings.py2
6 files changed, 4 insertions, 4 deletions
diff --git a/tests/sauer/README b/tests/cubescript/README
index c3a09528..c3a09528 100644
--- a/tests/sauer/README
+++ b/tests/cubescript/README
diff --git a/tests/sauer/command.cpp b/tests/cubescript/command.cpp
index cfd3d116..cfd3d116 100644
--- a/tests/sauer/command.cpp
+++ b/tests/cubescript/command.cpp
diff --git a/tests/sauer/command.h b/tests/cubescript/command.h
index 86b10885..86b10885 100644
--- a/tests/sauer/command.h
+++ b/tests/cubescript/command.h
diff --git a/tests/sauer/tools.h b/tests/cubescript/tools.h
index 08b528e2..08b528e2 100644
--- a/tests/sauer/tools.h
+++ b/tests/cubescript/tools.h
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')
diff --git a/tests/settings.py b/tests/settings.py
index 16c71400..8ce48fa6 100644
--- a/tests/settings.py
+++ b/tests/settings.py
@@ -35,7 +35,7 @@ if '2.8' in LLVM_ROOT:
SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/tracemonkey/js/src/js'), '-m'] # No |-j| due to Mozilla bug XXX
V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')]
-# XXX Warning: Compiling the 'sauer' test in SpiderMonkey can lead to an extreme amount of memory being
+# XXX Warning: Compiling the 'cubescript' test in SpiderMonkey can lead to an extreme amount of memory being
# used, see Mozilla bug 593659. Possibly also some other tests as well.
#COMPILER_ENGINE=SPIDERMONKEY_ENGINE
COMPILER_ENGINE=V8_ENGINE