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

    r2725 r3621  
    4545    "stdin"
    4646
     47testing "diff of empty file against stdin" \
     48    "diff -u - input | $TRIM_TAB" \
     49"\
     50--- -
     51+++ input
     52@@ -1 +0,0 @@
     53-a
     54" \
     55    "" \
     56    "a\n"
     57
    4758testing "diff of empty file against nonempty one" \
    4859    "diff -u - input | $TRIM_TAB" \
     
    8899    "\nb\n\n"
    89100
     101testing "diff -B ignores blank single line change" \
     102    'diff -qB - input; echo $?' \
     103    "0\n" \
     104    "\n1\n" \
     105    "1\n"
     106
     107testing "diff -B does not ignore non-blank single line change" \
     108    'diff -qB - input; echo $?' \
     109    "Files - and input differ\n1\n" \
     110    "0\n" \
     111    "1\n"
     112
    90113testing "diff always takes context from old file" \
    91114    "diff -ub - input | $TRIM_TAB" \
Note: See TracChangeset for help on using the changeset viewer.