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.
1 parent 8aead51 commit d160270Copy full SHA for d160270
ml-proto/runtests.py
@@ -9,6 +9,9 @@
9
10
class RunTests(unittest.TestCase):
11
def _runTestFile(self, shortName, fileName, interpreterPath):
12
+ # HACK: Windows python compatibility
13
+ fileName = fileName.replace("\\", "/")
14
+
15
logPath = fileName.replace("test/", "test/output/").replace(".wasm", ".wasm.log")
16
try:
17
os.remove(logPath)
@@ -59,6 +62,8 @@ def rebuild_interpreter(path):
59
62
60
63
if __name__ == "__main__":
61
64
interpreterPath = os.path.abspath("src/main.native")
65
66
+ interpreterPath = interpreterPath.replace("\\", "/")
67
68
69
os.makedirs("test/output/")
0 commit comments