source: MondoRescue/branches/3.3/mindi-busybox/shell/hush_test/hush-misc/nommu3.tests@ 3904

Last change on this file since 3904 was 3621, checked in by Bruno Cornec, 10 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

  • Property svn:executable set to *
File size: 183 bytes
Line 
1#!/bin/sh
2
3func()
4{
5 while read p; do echo "$p"; done
6}
7
8pipe_to_func()
9{
10 # We had a NOMMU bug which caused "echo Ok |" part to be lost
11 echo Ok | func
12}
13
14pipe_to_func | cat
15echo $?
Note: See TracBrowser for help on using the repository browser.