Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # Tests for busybox applet itself. |
| 4 | # Copyright 2005 by Rob Landley <rob@landley.net> |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | # Licensed under GPLv2, see file LICENSE in this source tree. |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 6 | |
Mike Frysinger | caa7940 | 2009-11-04 18:41:22 -0500 | [diff] [blame] | 7 | . ./testing.sh |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 8 | |
Denys Vlasenko | e208279 | 2010-01-16 02:49:40 +0100 | [diff] [blame] | 9 | HELPDUMP=`true | busybox 2>&1 | cat` |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 10 | |
Rob Landley | 48c6157 | 2005-11-07 08:50:53 +0000 | [diff] [blame] | 11 | # We need to test under calling the binary under other names. |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 12 | |
Denys Vlasenko | c0211e9 | 2010-05-11 04:32:04 +0200 | [diff] [blame] | 13 | optional FEATURE_VERBOSE_USAGE |
Denys Vlasenko | e208279 | 2010-01-16 02:49:40 +0100 | [diff] [blame] | 14 | testing "busybox --help busybox" "true | busybox --help busybox 2>&1 | cat" "$HELPDUMP\n\n" "" "" |
Denys Vlasenko | bfa1b2e | 2010-05-11 03:53:57 +0200 | [diff] [blame] | 15 | SKIP= |
Rob Landley | f6acb66 | 2005-09-05 16:27:19 +0000 | [diff] [blame] | 16 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 17 | ln -s `which busybox` busybox-suffix |
| 18 | for i in busybox ./busybox-suffix |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 19 | do |
| 20 | # The gratuitous "\n"s are due to a shell idiosyncrasy: |
| 21 | # environment variables seem to strip trailing whitespace. |
| 22 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 23 | testing "" "$i" "$HELPDUMP\n\n" "" "" |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 24 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 25 | testing "$i unknown" "$i unknown 2>&1" \ |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 26 | "unknown: applet not found\n" "" "" |
| 27 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 28 | testing "$i --help" "$i --help 2>&1" "$HELPDUMP\n\n" "" "" |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 29 | |
Denys Vlasenko | c0211e9 | 2010-05-11 04:32:04 +0200 | [diff] [blame] | 30 | optional FEATURE_VERBOSE_USAGE CAT |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 31 | testing "" "$i cat" "moo" "" "moo" |
Denys Vlasenko | e208279 | 2010-01-16 02:49:40 +0100 | [diff] [blame] | 32 | testing "$i --help cat" "$i --help cat 2>&1 | grep print" \ |
| 33 | "Concatenate FILEs and print them to stdout\n" "" "" |
Denys Vlasenko | bfa1b2e | 2010-05-11 03:53:57 +0200 | [diff] [blame] | 34 | SKIP= |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 35 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 36 | testing "$i --help unknown" "$i --help unknown 2>&1" \ |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 37 | "unknown: applet not found\n" "" "" |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 38 | done |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 39 | rm busybox-suffix |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 40 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 41 | ln -s `which busybox` unknown |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 42 | |
Rob Landley | 4bb1b04 | 2006-03-16 15:20:45 +0000 | [diff] [blame] | 43 | testing "busybox as unknown name" "./unknown 2>&1" \ |
| 44 | "unknown: applet not found\n" "" "" |
| 45 | rm unknown |
Mike Frysinger | 23ca725 | 2006-02-22 23:38:57 +0000 | [diff] [blame] | 46 | |
Rob Landley | b766c39 | 2005-09-04 11:10:37 +0000 | [diff] [blame] | 47 | exit $FAILCOUNT |