diff options
author | alon@honor <none@none> | 2010-10-02 12:03:07 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-10-02 12:03:07 -0700 |
commit | 51d1c32a775cbb4ac578911fe1ae03b064a792bd (patch) | |
tree | a9903e22ed5bcfba177bad8f93c12268b5f61279 /tests | |
parent | a3f35c0ffd4b6c3e38752ea8ff1e3fc2101a313b (diff) |
memory implementation cleanup
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runner.py | 2 | ||||
-rw-r--r-- | tests/settings.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 08bb8648..cdbaf43d 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -82,7 +82,7 @@ class T(unittest.TestCase): self.assertContained(expected_output, js_output) self.assertNotContained('ERROR', js_output) -# shutil.rmtree(dirname) # TODO: leave no trace in memory. But for now nice for debugging + #shutil.rmtree(dirname) # TODO: leave no trace in memory. But for now nice for debugging def assertContained(self, value, string): if value not in string: diff --git a/tests/settings.py b/tests/settings.py index 92f35203..e83129de 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -20,7 +20,7 @@ COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now - LLVM_DIS=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin/llvm-dis') -SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/m-c/js/src/js') +SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/mozilla-central/js/src/js') V8_ENGINE=os.path.expanduser('~/Dev/v8/d8') # XXX Warning: Running the 'sauer' test in SpiderMonkey can lead to an extreme amount of memory being |