summary refs log tree commit diff
path: root/bin/cash/tests/builtins/read2.0
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-10 20:19:51 -0500
committerJune McEnroe <june@causal.agency>2019-01-10 20:19:51 -0500
commit9beeb46022fc1e0c6bc6bec029bb949df10a2c3d (patch)
tree7db75dd126879bea3f0d8762b2619e0bebcf2836 /bin/cash/tests/builtins/read2.0
parentRemove funcs (diff)
downloadsrc-9beeb46022fc1e0c6bc6bec029bb949df10a2c3d.tar.gz
src-9beeb46022fc1e0c6bc6bec029bb949df10a2c3d.zip
Remove cash/tests
Diffstat (limited to '')
-rw-r--r--bin/cash/tests/builtins/read2.031
1 files changed, 0 insertions, 31 deletions
diff --git a/bin/cash/tests/builtins/read2.0 b/bin/cash/tests/builtins/read2.0
deleted file mode 100644
index f41acd51..00000000
--- a/bin/cash/tests/builtins/read2.0
+++ /dev/null
@@ -1,31 +0,0 @@
-# $FreeBSD: releng/12.0/bin/sh/tests/builtins/read2.0 212187 2010-09-03 21:17:33Z jilles $
-
-set -e
-{
-	echo 1
-	echo two
-	echo three
-} | {
-	read x
-	[ "$x" = 1 ]
-	(read x
-	[ "$x" = two ])
-	read x
-	[ "$x" = three ]
-}
-
-T=`mktemp sh-test.XXXXXX`
-trap 'rm -f "$T"' 0
-{
-	echo 1
-	echo two
-	echo three
-} >$T
-{
-	read x
-	[ "$x" = 1 ]
-	(read x
-	[ "$x" = two ])
-	read x
-	[ "$x" = three ]
-} <$T
2019-02-23Change example command to join #ascii.town on freenodeJune McEnroe 2019-02-23Call def_prog_mode after termNoFlowJune McEnroe 2019-02-22Move IRC formatting reset to C-sJune McEnroe 2019-02-22Disable terminal flow controlJune McEnroe 2019-02-22Bind up and down arrows to scrollJune McEnroe 2019-02-22Remove topic TODOJune McEnroe 2019-02-22Add /znc commandJune McEnroe 2019-02-22Update status line after scrolling and term eventsJune McEnroe 2019-02-22Reorganize input.cJune McEnroe 2019-02-22Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe 2019-02-21Replace "view" with "window"June McEnroe 2019-02-21Remove ROT13June McEnroe 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe