diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2022-04-04 16:00:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 16:00:56 -0700 |
commit | 1c5eaf07bb3fe696b3838ac2d73b9ce4646f0c64 (patch) | |
tree | 9de81a28d7e886445a18e911ad8cbe94c0ce8fc2 | |
parent | e6a62de43ef66b1c1ad0d740e3deeeb6365ded1b (diff) | |
download | binaryen-1c5eaf07bb3fe696b3838ac2d73b9ce4646f0c64.tar.gz binaryen-1c5eaf07bb3fe696b3838ac2d73b9ce4646f0c64.tar.bz2 binaryen-1c5eaf07bb3fe696b3838ac2d73b9ce4646f0c64.zip |
Add '-vv' verbosity to binaryen-lit tests (#4577)
To help debug them when they go wrong, as seems to be happening on #4574.
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48f771367..0ac70c7fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,7 @@ jobs: path: out/install - name: test binaryen-lit - run: python out/bin/binaryen-lit test/lit/parse-error.wast + run: python out/bin/binaryen-lit -vv test/lit/parse-error.wast - name: test run: python check.py --binaryen-bin=out/bin @@ -128,7 +128,7 @@ jobs: - name: build run: cmake --build out -v - name: test binaryen-lit - run: python out/bin/binaryen-lit test/lit/parse-error.wast + run: python out/bin/binaryen-lit -vv test/lit/parse-error.wast - name: test run: python check.py --binaryen-bin=out/bin |