On 8/8/07, Greg Schafer <[EMAIL PROTECTED]> wrote:
>
> sed -i.bak '/THIS_SH/s,$, </dev/tty,' tests/run-test
FYI, don't do .bak on this fix, use .orig or ~ instead. The script
that executes all the tests wildcards on run* and only strips out a
few, so the old run-test.bak gets run, too. This was driving me nuts
because I couldn't figure out why stdin wasn't /dev/tty like I said :)
If I'd just scrolled up a bit...
Here's what the loop looks like in tests/run-all:
for x in run-*
do
case $x in
$0|run-minimal|run-gprof) ;;
*.orig|*~) ;;
*) echo $x ; sh $x ;;
esac
done
--
Dan
--
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page