aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_exit_code.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-05-03 19:17:09 +0900
committernsfisis <nsfisis@gmail.com>2025-05-03 19:17:09 +0900
commit2783653dd95c2e4acb69151aee9350926204493a (patch)
treec8f2a70f805dcd59d802f6a17380772ff5041183 /tests/test_exit_code.sh
parent20373c013228fca7d01463d4454878a2c5db7cba (diff)
downloadP4Dcc-2783653dd95c2e4acb69151aee9350926204493a.tar.gz
P4Dcc-2783653dd95c2e4acb69151aee9350926204493a.tar.zst
P4Dcc-2783653dd95c2e4acb69151aee9350926204493a.zip
add output test
Diffstat (limited to 'tests/test_exit_code.sh')
-rw-r--r--tests/test_exit_code.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_exit_code.sh b/tests/test_exit_code.sh
index ad548e4..f49d468 100644
--- a/tests/test_exit_code.sh
+++ b/tests/test_exit_code.sh
@@ -11,7 +11,7 @@ exit_code=$?
expected=$1
-if [[ ! $exit_code -eq $expected ]]; then
+if [[ $exit_code -ne $expected ]]; then
echo "invalid exit code: expected $expected, but got $exit_code" >&2
exit 1
fi