summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Ankur Tyagi2025-11-20 16:01:58 +1300
committerGravatar Ankur Tyagi2025-11-20 16:01:58 +1300
commit18e5b22a71f85091127cc063db79c8df687c582c (patch)
treea9aa7eaf90c6cc85a7d2b2c51a73c99af7a714eb
parent2c50f76481429c495628c56223b7810c5af0b2cd (diff)
downloadlibplist-18e5b22a71f85091127cc063db79c8df687c582c.tar.gz
libplist-18e5b22a71f85091127cc063db79c8df687c582c.tar.bz2
test: fix operator error
Otherwise test fail with error [: -neq: binary operator expected Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
-rwxr-xr-xtest/json-invalid-types.test6
-rwxr-xr-xtest/ostep-invalid-types.test6
2 files changed, 6 insertions, 6 deletions
diff --git a/test/json-invalid-types.test b/test/json-invalid-types.test
index c532316..a21fcd9 100755
--- a/test/json-invalid-types.test
+++ b/test/json-invalid-types.test
@@ -14,19 +14,19 @@ export PLIST_JSON_DEBUG=1
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE0 -o /dev/null
-if [ $? -neq 2 ]; then
+if [ $? -ne 2 ]; then
exit 1
fi
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE1 -o /dev/null
-if [ $? -neq 2 ]; then
+if [ $? -ne 2 ]; then
exit 2
fi
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE2 -o /dev/null
-if [ $? -neq 2 ]; then
+if [ $? -ne 2 ]; then
exit 3
fi
diff --git a/test/ostep-invalid-types.test b/test/ostep-invalid-types.test
index 9222394..240505c 100755
--- a/test/ostep-invalid-types.test
+++ b/test/ostep-invalid-types.test
@@ -14,19 +14,19 @@ export PLIST_OSTEP_DEBUG=1
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f openstep -i $DATASRC/$TESTFILE0 -o /dev/null
-if [ $? -neq 2 ]; then
+if [ $? -ne 2 ]; then
exit 1
fi
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f openstepn -i $DATASRC/$TESTFILE1 -o /dev/null
-if [ $? -neq 2 ]; then
+if [ $? -ne 2 ]; then
exit 2
fi
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f openstep -i $DATASRC/$TESTFILE2 -o /dev/null
-if [ $? -neq 2 ]; then
+if [ $? -ne 2 ]; then
exit 3
fi