busybox/shell/ash_test/ash-misc/nommu3.tests
Denys Vlasenko a62bc80571 ash testsuite: add most of hust tests which pass for ash
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2016-10-03 00:06:55 +02:00

16 lines
183 B
Bash
Executable File

#!/bin/sh
func()
{
while read p; do echo "$p"; done
}
pipe_to_func()
{
# We had a NOMMU bug which caused "echo Ok |" part to be lost
echo Ok | func
}
pipe_to_func | cat
echo $?