From 0243724bc6eebed05049725456e4141d538d71ff Mon Sep 17 00:00:00 2001 From: Helmut Eller Date: Thu, 25 Sep 2025 20:42:14 +0200 Subject: [PATCH] * mps/tool/testrun.sh (testansi, testpollnone): Skip Unix & Windows --- mps/tool/testrun.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mps/tool/testrun.sh b/mps/tool/testrun.sh index 02d2e6593df..df00883b8ca 100755 --- a/mps/tool/testrun.sh +++ b/mps/tool/testrun.sh @@ -46,11 +46,11 @@ while [ $# -gt 0 ]; do TEST_SUITE=$2 # Test-suite exclusions. case $TEST_SUITE in - testrun) EXCLUDE_SUITE=LN ;; - testci) EXCLUDE_SUITE=BN ;; - testall) EXCLUDE_SUITE=N ;; - testansi) EXCLUDE_SUITE=LNT ;; - testpollnone) EXCLUDE_SUITE=LNPT ;; + testrun) EXCLUDE_SUITE=LN ;; + testci) EXCLUDE_SUITE=BN ;; + testall) EXCLUDE_SUITE=N ;; + testansi) EXCLUDE_SUITE=LNTWX ;; + testpollnone) EXCLUDE_SUITE=LNPTWX ;; *) echo "Test suite $TEST_SUITE not recognized." exit 1 ;;