od.tests 313 B

12345678910111213141516171819
  1. #!/bin/sh
  2. # Copyright 2008 by Denys Vlasenko
  3. # Licensed under GPL v2, see file LICENSE for details.
  4. . ./testing.sh
  5. # testing "test name" "options" "expected result" "file input" "stdin"
  6. optional DESKTOP
  7. testing "od -b" \
  8. "od -b" \
  9. "\
  10. 0000000 110 105 114 114 117
  11. 0000005
  12. " \
  13. "" "HELLO"
  14. SKIP=
  15. exit $FAILCOUNT