diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-16 13:48:00 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-16 13:48:00 -0700 |
commit | 3cbdfcc318e45219edbe78c21cd25fe23f5c1c52 (patch) | |
tree | 14717daa5981aab0d79a82ac79d26ebc4c8e9c4a /tests/runner.py | |
parent | 8435e3f819de4daa2326b84812186543cc5e8b4e (diff) | |
parent | 3299393a68844ca5d388808627892a57f92509b1 (diff) |
Merge pull request #1038 from juj/fix_test_asm_pgo_windows
Fix test_asm_pgo on Windows.
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 77b156a0..6753e534 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -8085,11 +8085,11 @@ def process(filename): shutil.move(self.in_dir('src.cpp.o.js'), self.in_dir('pgo.js')) pgo_output = run_js(self.in_dir('pgo.js')).split('\n')[1] - open('pgo_data', 'w').write(pgo_output) + open('pgo_data.rsp', 'w').write(pgo_output) # with response file - self.emcc_args += ['@pgo_data'] + self.emcc_args += ['@pgo_data.rsp'] self.do_run(src, output) self.emcc_args.pop() shutil.move(self.in_dir('src.cpp.o.js'), self.in_dir('pgoed.js')) |