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

    r2725 r3621  
    2222optional FEATURE_READLINK_FOLLOW
    2323
    24 testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$PWD/$TESTFILE\n" "" ""
    25 testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$PWD/$TESTFILE\n" "" ""
     24# shell's $PWD may leave symlinks unresolved.
     25# "pwd" may be a built-in and have the same problem.
     26# External pwd _can't_ have that problem (current dir on Unix is physical).
     27pwd=`which pwd`
     28pwd=`$pwd`
     29testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$pwd/$TESTFILE\n" "" ""
     30testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$pwd/$TESTFILE\n" "" ""
    2631testing "readlink -f on an invalid link" "readlink -f ./$FAILLINK" "" "" ""
    27 testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$PWD/$TESTFILE\n" "" ""
     32testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$pwd/$TESTFILE\n" "" ""
    2833
    2934
Note: See TracChangeset for help on using the changeset viewer.