summaryrefslogtreecommitdiff
path: root/tests/posixpipe.tests
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-11-22 19:11:26 -0500
committerChet Ramey <chet.ramey@case.edu>2011-11-22 19:11:26 -0500
commit495aee441b75276e38c75694ccb455bb6463fdb9 (patch)
treef12907dbf62388e6c65dfa1c5e1199509936707e /tests/posixpipe.tests
parent30d188c2932d6ef609d894fefeb7e7b03ccff463 (diff)
downloadbash-495aee441b75276e38c75694ccb455bb6463fdb9.tar.gz
Bash-4.2 distribution sources and documentationbash-4.2
Diffstat (limited to 'tests/posixpipe.tests')
-rw-r--r--tests/posixpipe.tests43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/posixpipe.tests b/tests/posixpipe.tests
new file mode 100644
index 00000000..a2f047af
--- /dev/null
+++ b/tests/posixpipe.tests
@@ -0,0 +1,43 @@
+# Test timed and negated pipelines in bash-4.2 and later
+export TIMEFORMAT=$'real %2R\nuser %2U\nsys %2S'
+
+!
+echo $?
+
+! !
+echo $?
+
+time ! echo a
+echo $?
+
+! time echo a
+echo $?
+
+tfunc()
+{
+ time
+}
+
+type tfunc
+
+! true
+echo $?
+! ! true
+echo $?
+! ! ! true
+echo $?
+
+time time echo a
+echo $?
+
+time time -p echo a
+echo $?
+time -p time echo a
+echo $?
+
+!
+echo $?
+! !
+echo $?
+
+time -p -- echo a