Merge test suite.

This commit is contained in:
Matt Kraai
2001-10-30 23:11:20 +00:00
parent 999623e973
commit 3889078dbe
73 changed files with 660 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
echo I WANT >foo
test "$(busybox dd if=foo 2>/dev/null)" = "I WANT"

View File

@@ -0,0 +1,2 @@
echo I WANT | busybox dd of=foo 2>/dev/null
echo I WANT | cmp foo -

View File

@@ -0,0 +1 @@
test "$(echo I WANT | busybox dd 2>/dev/null)" = "I WANT"

View File

@@ -0,0 +1,2 @@
echo I WANT | busybox dd of=foo >/dev/null 2>bar
grep -q records bar