diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-07-08 22:27:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 22:27:19 +0000 |
commit | a533488572de0c8916add42b01530f0244ca4623 (patch) | |
tree | 986617295d3febca960ce537370d6017c054b9c8 /test | |
parent | 397a06e5992b11eb89493b0ebce08990bd2830c2 (diff) | |
download | binaryen-a533488572de0c8916add42b01530f0244ca4623.tar.gz binaryen-a533488572de0c8916add42b01530f0244ca4623.tar.bz2 binaryen-a533488572de0c8916add42b01530f0244ca4623.zip |
Do not execute lit tests via an external shell (#3974)
We were previously configuring lit to execute test scripts via an external
shell, which caused lit to look for a bash installation on Windows. To make lit
tests work more "out of the box" on Windows, change the configuration to use
lit's built in shell capabilities instead.
Diffstat (limited to 'test')
-rw-r--r-- | test/lit/lit.cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit/lit.cfg.py b/test/lit/lit.cfg.py index bc034b349..23b0c3de6 100644 --- a/test/lit/lit.cfg.py +++ b/test/lit/lit.cfg.py @@ -1,7 +1,7 @@ import lit.formats config.name = "Binaryen lit tests" -config.test_format = lit.formats.ShTest(True) +config.test_format = lit.formats.ShTest() config.suffixes = ['.wat', '.wast', '.test'] |