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/sort.tests

    r2725 r3621  
    4848" "$data" ""
    4949
    50 test x"$SKIP_KNOWN_BUGS" = x"" && {
    51 # Busybox is definitely doing these wrong.  FIXME
    5250testing "sort key range with numeric option and global reverse" \
    5351"sort -k2,3n -r input" \
     
    6664egg 1   2   papyrus
    6765" "$data" ""
    68 }
    6966
    7067testing "sort key range with two -k options" "sort -k 2,2n -k 1,1r input" "\
     
    10299" ""
    103100
     101testing "sort with non-default leading delim 4" "sort -t: -k1,1 input" "\
     102a:b
     103a/a:a
     104" "\
     105a/a:a
     106a:b
     107" ""
     108
     109testing "sort with ENDCHAR" "sort -t. -k1,1.1 -k2 input" "\
     110ab.1
     111aa.2
     112" "\
     113aa.2
     114ab.1
     115" ""
     116
     117testing "glibc build sort" "sort -t. -k 1,1 -k 2n,2n -k 3 input" "\
     118GLIBC_2.1
     119GLIBC_2.1.1
     120GLIBC_2.2
     121GLIBC_2.2.1
     122GLIBC_2.10
     123GLIBC_2.20
     124GLIBC_2.21
     125" "\
     126GLIBC_2.21
     127GLIBC_2.1.1
     128GLIBC_2.2.1
     129GLIBC_2.2
     130GLIBC_2.20
     131GLIBC_2.10
     132GLIBC_2.1
     133" ""
     134
     135testing "glibc build sort unique" "sort -u -t. -k 1,1 -k 2n,2n -k 3 input" "\
     136GLIBC_2.1
     137GLIBC_2.1.1
     138GLIBC_2.2
     139GLIBC_2.2.1
     140GLIBC_2.10
     141GLIBC_2.20
     142GLIBC_2.21
     143" "\
     144GLIBC_2.10
     145GLIBC_2.2.1
     146GLIBC_2.1.1
     147GLIBC_2.20
     148GLIBC_2.2
     149GLIBC_2.1
     150GLIBC_2.21
     151" ""
     152
    104153testing "sort -u should consider field only when discarding" "sort -u -k2 input" "\
    105154a c
Note: See TracChangeset for help on using the changeset viewer.