aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-18 21:02:12 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-18 21:02:12 -0800
commitf0c1bdde63e589b707f43e762d5cdc973c59becb (patch)
treef8786d2980f772a0ab7e865197c120e3ad4e46f1 /tests/runner.py
parent28686e4941103f51270df388d808d9bc7c00d566 (diff)
move libc++ new into dlmalloc in terms of emcc library autolinking
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 407cfc00..15a088e8 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -257,6 +257,8 @@ if 'benchmark' not in str(sys.argv) and 'sanity' not in str(sys.argv):
print "Running Emscripten tests..."
+ Cache.erase() # Wipe the cache, so that we always test populating it in the test runner
+
class T(RunnerCore): # Short name, to make it more fun to use manually on the commandline
## Does a complete test - builds, runs, checks output, etc.
def do_run(self, src, expected_output=None, args=[], output_nicerizer=None, output_processor=None, no_build=False, main_file=None, additional_files=[], js_engines=None, post_build=None, basename='src.cpp', libraries=[], includes=[], force_c=False, build_ll_hook=None, extra_emscripten_args=[]):