Changeset 2566


Ignore:
Timestamp:
Mar 7, 2006, 1:03:32 AM (19 years ago)
Author:
bird
Message:

line ending fuckup.

Location:
trunk/coreutils/tests/cp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/coreutils/tests/cp/backup-is-src

    r2554 r2566  
    3535EOF
    3636
    37 cmp out2 exp || fail=1
     37diff out2 exp 2> /dev/null || fail=1 # bird cmp -> diff (eol)
    3838
    3939(exit $fail); exit $fail
  • trunk/coreutils/tests/cp/cp-mv-backup

    r2554 r2566  
    9393sed 's/: x/:/' $expected-tmp |cat $expected-tmp - > $expected
    9494
    95 cmp $expected $actual || fail=1
     95diff $expected $actual 1>&2 || fail=1 #bird cmp -> diff (eol)
    9696
    97 # Uncomment this if you see a failure and want to try to diagnose it.
    98 test $fail = 1 && diff -c $expected $actual 1>&2
     97## Uncomment this if you see a failure and want to try to diagnose it.
     98#test $fail = 1 && diff -c $expected $actual 1>&2
    9999
    100100(exit $fail); exit $fail
Note: See TracChangeset for help on using the changeset viewer.