Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

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

    r2725 r3621  
    7777    "" ""
    7878
     79testing "test '!' = '!': should be true (0)" \
     80    "busybox test '!' = '!'; echo \$?" \
     81    "0\n" \
     82    "" ""
     83
     84testing "test '(' = '(': should be true (0)" \
     85    "busybox test '(' = '('; echo \$?" \
     86    "0\n" \
     87    "" ""
     88
     89testing "test '!' '!' = '!': should be false (1)" \
     90    "busybox test '!' '!' = '!'; echo \$?" \
     91    "1\n" \
     92    "" ""
     93
     94testing "test '!' '(' = '(': should be false (1)" \
     95    "busybox test '!' '(' = '('; echo \$?" \
     96    "1\n" \
     97    "" ""
     98
    7999exit $FAILCOUNT
Note: See TracChangeset for help on using the changeset viewer.