busybox/testsuite/od.tests

18 lines
290 B
Plaintext
Raw Normal View History

2008-04-15 01:20:06 +05:30
#!/bin/sh
# Copyright 2008 by Denys Vlasenko
# Licensed under GPL v2, see file LICENSE for details.
. ./testing.sh
2008-04-15 01:20:06 +05:30
# testing "test name" "options" "expected result" "file input" "stdin"
testing "od -b" \
2008-04-15 01:26:46 +05:30
"od -b" \
2008-04-15 01:20:06 +05:30
"\
2008-04-15 01:26:46 +05:30
0000000 110 105 114 114 117
0000005
2008-04-15 01:20:06 +05:30
" \
"" "HELLO"
exit $FAILCOUNT