diff options
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index 9f9a877b0..b95cae481 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -66,7 +66,8 @@ def update_example_tests(): with open(expected, 'wb') as o: o.write(actual) finally: - os.remove(output_file) + pass + # os.remove(output_file) def update_wasm_dis_tests(): |