One more FreeBSD-only-in-CI
Some checks failed
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Rust checks / clippy (push) Waiting to run
Lock threads / lock (push) Has been cancelled

This commit is contained in:
Fabian Boehm 2024-12-15 17:38:37 +01:00
parent 8add30e3bf
commit 95f4c9c07e

View File

@ -18,10 +18,7 @@ import signal
import subprocess
import sys
if "CI" in os.environ and platform.system() == "Darwin":
sys.exit(127)
if platform.system() == "FreeBSD": # Spurious failure. TODO Only disable this in CI.
if "CI" in os.environ and platform.system() in ["Darwin", "FreeBSD"]:
sys.exit(127)
expect_prompt()