[libsecret] tool: Fix TAP output of test-secret-tool.sh



commit f1451c348a049151449ab29be245b9316767afa2
Author: Daiki Ueno <dueno src gnome org>
Date:   Mon Jan 13 13:52:11 2020 +0100

    tool: Fix TAP output of test-secret-tool.sh

 tool/test-secret-tool.sh | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)
---
diff --git a/tool/test-secret-tool.sh b/tool/test-secret-tool.sh
index 9bd4fbd..9f4a7b7 100755
--- a/tool/test-secret-tool.sh
+++ b/tool/test-secret-tool.sh
@@ -25,28 +25,28 @@ export SECRET_FILE_TEST_PASSWORD
 
 : ${DIFF=diff}
 
-echo 1..4
+echo 1..6
 
 echo test1 | ${SECRET_TOOL} store --label label1 foo bar
 if test $? -eq 0; then
-  echo "ok 1 /secret-tool/store"
+  echo "ok 1 /secret-tool/store1"
 else
-  echo "not ok 1 /secret-tool/store"
+  echo "not ok 1 /secret-tool/store1"
 fi
 
 echo test2 | ${SECRET_TOOL} store --label label2 foo bar apple orange
 if test $? -eq 0; then
-  echo "ok 1 /secret-tool/store"
+  echo "ok 2 /secret-tool/store2"
 else
-  echo "not ok 1 /secret-tool/store"
+  echo "not ok 2 /secret-tool/store2"
 fi
 
 echo test1 > lookup.exp
 ${SECRET_TOOL} lookup foo bar > lookup.out
 if ${DIFF} lookup.exp lookup.out > lookup.diff; then
-  echo "ok 2 /secret-tool/lookup"
+  echo "ok 3 /secret-tool/lookup"
 else
-  echo "not ok 2 /secret-tool/lookup"
+  echo "not ok 3 /secret-tool/lookup"
   sed 's/^/# /' lookup.diff
   exit 1
 fi
@@ -64,22 +64,22 @@ EOF
 
 ${SECRET_TOOL} search foo bar | sed '/^created\|^modified/d' > search.out
 if test $? -ne 0; then
-  echo "not ok 3 /secret-tool/search"
+  echo "not ok 4 /secret-tool/search"
   exit 1
 fi
 if ${DIFF} search.exp search.out > search.diff; then
-  echo "ok 3 /secret-tool/search"
+  echo "ok 4 /secret-tool/search"
 else
-  echo "not ok 3 /secret-tool/search"
+  echo "not ok 4 /secret-tool/search"
   sed 's/^/# /' search.diff
   exit 1
 fi
 
 ${SECRET_TOOL} clear apple orange
 if test $? -eq 0; then
-  echo "ok 4 /secret-tool/clear"
+  echo "ok 5 /secret-tool/clear"
 else
-  echo "not ok 4 /secret-tool/clear"
+  echo "not ok 5 /secret-tool/clear"
   exit 1
 fi
 
@@ -92,13 +92,13 @@ EOF
 
 ${SECRET_TOOL} search foo bar | sed '/^created\|^modified/d' > search-after-clear.out
 if test $? -ne 0; then
-  echo "not ok 5 /secret-tool/search-after-clear"
+  echo "not ok 6 /secret-tool/search-after-clear"
   exit 1
 fi
 if ${DIFF} search-after-clear.exp search-after-clear.out > search-after-clear.diff; then
-  echo "ok 5 /secret-tool/search-after-clear"
+  echo "ok 6 /secret-tool/search-after-clear"
 else
-  echo "not ok 5 /secret-tool/search-after-clear"
+  echo "not ok 6 /secret-tool/search-after-clear"
   sed 's/^/# /' search-after-clear.diff
   exit 1
 fi


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]