diff options
author | fvogel <fvogelnew1@free.fr> | 2021-05-12 17:40:33 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2021-05-12 17:40:33 (GMT) |
commit | 9a05dc9c7ecc833491315bef91c73596dc444763 (patch) | |
tree | 236a9cf781bd0f2e55fe4d5194a3079fa85e9406 | |
parent | 4817f9cbbdb03655aac3a6c0730c04f7973d4d63 (diff) | |
download | tk-9a05dc9c7ecc833491315bef91c73596dc444763.zip tk-9a05dc9c7ecc833491315bef91c73596dc444763.tar.gz tk-9a05dc9c7ecc833491315bef91c73596dc444763.tar.bz2 |
Previous commit shows a segfault in wm.test. Narrow down at which test this happens.
-rw-r--r-- | .github/workflows/mac-build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 0bd8cf6..62aaed9 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -127,7 +127,7 @@ jobs: : do nothing } fi - ( runXvfb :0; make test-classic test-ttk; exit $? ) | tee out.txt || { + ( runXvfb :0; make test-classic test-ttk TESTFLAGS="-verbose bepst"; exit $? ) | tee out.txt || { echo "::error::Failure during Test" exit 1 } |