mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Merge pull request #11177 from obsidiansystems/skip-exit-code
Change skipped test error code from 99 to 77
This commit is contained in:
commit
6662c9012d
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ run_test
|
||||||
|
|
||||||
if [[ "$status" = 0 ]]; then
|
if [[ "$status" = 0 ]]; then
|
||||||
echo "$post_run_msg [${green}PASS$normal]"
|
echo "$post_run_msg [${green}PASS$normal]"
|
||||||
elif [[ "$status" = 99 ]]; then
|
elif [[ "$status" = 77 ]]; then
|
||||||
echo "$post_run_msg [${yellow}SKIP$normal]"
|
echo "$post_run_msg [${yellow}SKIP$normal]"
|
||||||
else
|
else
|
||||||
echo "$post_run_msg [${red}FAIL$normal]"
|
echo "$post_run_msg [${red}FAIL$normal]"
|
||||||
|
|
|
@ -190,7 +190,7 @@ isDaemonNewer () {
|
||||||
|
|
||||||
skipTest () {
|
skipTest () {
|
||||||
echo "$1, skipping this test..." >&2
|
echo "$1, skipping this test..." >&2
|
||||||
exit 99
|
exit 77
|
||||||
}
|
}
|
||||||
|
|
||||||
TODO_NixOS() {
|
TODO_NixOS() {
|
||||||
|
|
Loading…
Reference in a new issue