aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-invert
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-05 20:46:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-05 20:46:46 +0000
commit140644dc1cae13df47de2c9d54109c75800446d6 (patch)
treed9271ad835c4118af00d12bf3e5e7c8f87551739 /shell/ash_test/ash-invert
parentccd412da09d3d9ff54e14874c74c0a8dde6015b2 (diff)
downloadbusybox-140644dc1cae13df47de2c9d54109c75800446d6.tar.gz
add ash testcases
Diffstat (limited to 'shell/ash_test/ash-invert')
-rw-r--r--shell/ash_test/ash-invert/invert.right10
-rwxr-xr-xshell/ash_test/ash-invert/invert.tests19
2 files changed, 29 insertions, 0 deletions
diff --git a/shell/ash_test/ash-invert/invert.right b/shell/ash_test/ash-invert/invert.right
new file mode 100644
index 000000000..5a9239aa6
--- /dev/null
+++ b/shell/ash_test/ash-invert/invert.right
@@ -0,0 +1,10 @@
+1
+1
+1
+0
+0
+1
+0
+1
+0
+1
diff --git a/shell/ash_test/ash-invert/invert.tests b/shell/ash_test/ash-invert/invert.tests
new file mode 100755
index 000000000..8393d95a4
--- /dev/null
+++ b/shell/ash_test/ash-invert/invert.tests
@@ -0,0 +1,19 @@
+# tests of return value inversion
+# placeholder for future expansion
+
+# user subshells (...) did this wrong in bash versions before 2.04
+
+! ( echo hello | grep h >/dev/null 2>&1 ); echo $?
+! echo hello | grep h >/dev/null 2>&1 ; echo $?
+
+! true ; echo $?
+! false; echo $?
+
+! (false) ; echo $?
+! (true); echo $?
+
+! true | false ; echo $?
+! false | true ; echo $?
+
+! (true | false) ; echo $?
+! (false | true) ; echo $?