Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/testsuite/busybox.tests

    r821 r2725  
    33# Tests for busybox applet itself.
    44# Copyright 2005 by Rob Landley <rob@landley.net>
    5 # Licensed under GPL v2, see file LICENSE for details.
     5# Licensed under GPLv2, see file LICENSE in this source tree.
    66
    7 . testing.sh
     7. ./testing.sh
    88
    9 HELPDUMP=`busybox`
     9HELPDUMP=`true | busybox 2>&1 | cat`
    1010
    1111# We need to test under calling the binary under other names.
    1212
    13 
    14 testing "busybox --help busybox" "busybox --help busybox" "$HELPDUMP\n\n" "" ""
     13optional FEATURE_VERBOSE_USAGE
     14testing "busybox --help busybox" "true | busybox --help busybox 2>&1 | cat" "$HELPDUMP\n\n" "" ""
     15SKIP=
    1516
    1617ln -s `which busybox` busybox-suffix
     
    2728    testing "$i --help" "$i --help 2>&1" "$HELPDUMP\n\n" "" ""
    2829
    29     optional CAT
     30    optional FEATURE_VERBOSE_USAGE CAT
    3031    testing "" "$i cat" "moo" "" "moo"
    31     testing "$i --help cat" "$i --help cat 2>&1 | grep prints" \
    32         "Concatenates FILE(s) and prints them to stdout.\n" "" ""
    33     optional ""
     32    testing "$i --help cat" "$i --help cat 2>&1 | grep print" \
     33        "Concatenate FILEs and print them to stdout\n" "" ""
     34    SKIP=
    3435
    3536    testing "$i --help unknown" "$i --help unknown 2>&1" \
Note: See TracChangeset for help on using the changeset viewer.