pidof.tests 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. #!/bin/sh
  2. # pidof tests.
  3. # Copyright 2005 by Bernhard Reutner-Fischer
  4. # Licensed under GPLv2, see file LICENSE in this source tree.
  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. SKIP=
  17. optional FEATURE_PIDOF_OMIT FEATURE_PIDOF_SINGLE
  18. # This test fails now because process name matching logic has changed,
  19. # but new logic is not "wrong" either... see find_pid_by_name.c comments
  20. #testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" ""
  21. testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" ""
  22. testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" ""
  23. SKIP=
  24. exit $FAILCOUNT