aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-10-18 17:21:29 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-10-18 17:21:29 -0700
commit50b263040597f52aae0706ebe7ffc6a44f016d11 (patch)
tree99ea4ea8df3ceefd0ead6b1149716e3f6e13165e /tests/runner.py
parent9ff73ac6691eb5d02f8ec3e82f92fd45ec16d172 (diff)
move some paths to tools/shared
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 1302818e..b8149810 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -28,15 +28,6 @@ try:
except:
raise Exception('Cannot find "COMPILER_OPTS" definition. Is ~/.emscripten set up properly? You may need to copy the template from settings.py into it.')
-# Paths
-
-EMSCRIPTEN = path_from_root('emscripten.py')
-DEMANGLER = path_from_root('third_party', 'demangler.py')
-NAMESPACER = path_from_root('tools', 'namespacer.py')
-EMMAKEN = path_from_root('tools', 'emmaken.py')
-AUTODEBUGGER = path_from_root('tools', 'autodebugger.py')
-DFE = path_from_root('tools', 'dead_function_eliminator.py')
-
# Global cache for tests (we have multiple TestCase instances; this object lets them share data)
GlobalCache = {}