We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ef0d6 commit 576aa60Copy full SHA for 576aa60
tests/scripts/regression-001.sh
@@ -45,9 +45,9 @@ ulimit -c
45
ulimit | wc
46
47
echo '--- for exit code ---'
48
-./target/debug/cicada -c 'cinfo1'
+./target/debug/cicada -c cinfo1
49
echo $?
50
-echo '/bin/ls does-not-exist.txt' > tmp.sh
51
-./target/debug/cicada tmp.sh
+echo 'exit 3' > exit3.sh
+./target/debug/cicada exit3.sh
52
53
-rm -f tmp.sh
+rm -f exit3.sh
tests/scripts/regression-001.sh.out
@@ -22,4 +22,4 @@ c5
22
2 7 38
23
--- for exit code ---
24
127
25
-1
+3
0 commit comments