summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-08-29 14:30:06 -0700
committerGitHub <noreply@github.com>2024-08-29 21:30:06 +0000
commitaa7569809f37ae3fea83385b0acb2513b4a2f6ce (patch)
tree915ca200ed7f052e843bf92d8464afa522f0b366
parent992468376b0cce76410be55bf3fbcacad141b7db (diff)
downloadbinaryen-aa7569809f37ae3fea83385b0acb2513b4a2f6ce.tar.gz
binaryen-aa7569809f37ae3fea83385b0acb2513b4a2f6ce.tar.bz2
binaryen-aa7569809f37ae3fea83385b0acb2513b4a2f6ce.zip
Move lit test temporary files to out/test/ (#6887)
Previously for in-tree builds, they were put directly into test/, which unnecessarily pollutes the tree.
-rw-r--r--test/lit/lit.cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit/lit.cfg.py b/test/lit/lit.cfg.py
index 79d9f641b..b337bddcd 100644
--- a/test/lit/lit.cfg.py
+++ b/test/lit/lit.cfg.py
@@ -7,7 +7,7 @@ config.test_format = lit.formats.ShTest()
config.suffixes = ['.wat', '.wast', '.test']
config.test_source_root = os.path.dirname(__file__)
-config.test_exec_root = os.path.join(config.binaryen_build_root, 'test')
+config.test_exec_root = os.path.join(config.binaryen_build_root, 'out', 'test')
config.environment = dict(os.environ)