pidof.tests 869 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. # pidof tests.
  3. # Copyright 2005 by Bernhard Fischer
  4. # Licensed under GPL v2, see file LICENSE for details.
  5. # AUDIT:
  6. . testing.sh
  7. # testing "test name" "options" "expected result" "file input" "stdin"
  8. testing "pidof (exit with error)" \
  9. "pidof veryunlikelyoccuringbinaryname ; echo \$?" "1\n" "" ""
  10. testing "pidof (exit with success)" "pidof pidof > /dev/null; echo \$?" \
  11. "0\n" "" ""
  12. # We can get away with this because it says #!/bin/sh up top.
  13. testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" ""
  14. optional FEATURE_PIDOF_SINGLE
  15. testing "pidof -s" "pidof -s init" "1\n" "" ""
  16. optional FEATURE_PIDOF_OMIT
  17. testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" ""
  18. testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" ""
  19. testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" ""
  20. exit $FAILCOUNT