Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/source/docs/getting_started/test-suite.rst
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ emits debug output and intermediate files (the files go in


You can also specify ``--save-dir`` to save the temporary directory that the
test runner uses into **/tmp/emscripten_test/**. This is a test suite-specific
test runner uses into **/out/test/**. This is a test suite-specific
feature, and is useful for inspecting test outputs as well as temporary files
generated by the test. By default, the temporary directory will be cleaned
between each test run, but you can add ``--no-clean`` to avoid this.
Expand Down
2 changes: 1 addition & 1 deletion test/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ def setUp(self):
self.temp_files_before_run.append(os.path.normpath(os.path.join(root, filename)))

if EMTEST_SAVE_DIR:
self.working_dir = os.path.join(self.temp_dir, 'emscripten_test')
self.working_dir = path_from_root('out/test')
if os.path.exists(self.working_dir):
if EMTEST_SAVE_DIR == 2:
print('Not clearing existing test directory')
Expand Down