1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Merge pull request #11177 from obsidiansystems/skip-exit-code

Change skipped test error code from 99 to 77
This commit is contained in:
Robert Hensing 2024-07-25 06:59:18 +02:00 committed by GitHub
commit 6662c9012d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ run_test
if [[ "$status" = 0 ]]; then
echo "$post_run_msg [${green}PASS$normal]"
elif [[ "$status" = 99 ]]; then
elif [[ "$status" = 77 ]]; then
echo "$post_run_msg [${yellow}SKIP$normal]"
else
echo "$post_run_msg [${red}FAIL$normal]"

View file

@ -190,7 +190,7 @@ isDaemonNewer () {
skipTest () {
echo "$1, skipping this test..." >&2
exit 99
exit 77
}
TODO_NixOS() {