diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-11-13 14:45:22 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-11-13 14:45:22 -0800 |
commit | 1b153b74662b198f99a1b7e21d8bc60f562f6feb (patch) | |
tree | c82af930836346c2da71d62ca10b5db749865e9f | |
parent | cc66f5d1e8e2aa9c0fc57a78b1b896f0a6cb8581 (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
-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.py | 6 | ||||
-rw-r--r-- | tests/settings.py | 2 |
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 |