We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd4d0e4 + d48cba1 commit fddfd31Copy full SHA for fddfd31
tests/runner.py
@@ -22,6 +22,7 @@
22
def path_from_root(*pathelems):
23
return os.path.join(__rootpath__, *pathelems)
24
sys.path += [path_from_root('')]
25
+import tools.shared
26
from tools.shared import *
27
28
# Sanity check for config
@@ -40,7 +41,9 @@ class RunnerCore(unittest.TestCase):
40
41
# Change this to None to get stderr reporting, for debugging purposes
42
43
def setUp(self):
44
+ global Settings
45
Settings.reset()
46
+ Settings = tools.shared.Settings
47
self.banned_js_engines = []
48
if not self.save_dir:
49
dirname = tempfile.mkdtemp(prefix='emscripten_test_' + self.__class__.__name__ + '_', dir=TEMP_DIR)
0 commit comments