From 86c25f5335bd664a4f6dc7255c7556df707fe086 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 2 Oct 2019 18:46:36 -0700 Subject: readlink: add missing line, plus a test. I must have lost this line somehow when I moved the patch from my AOSP tree to a toybox tree. (But the ln tests passed on the host because I was using coreutils ln there :-( ) --- tests/readlink.test | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/readlink.test b/tests/readlink.test index 52121770..cc728dbf 100755 --- a/tests/readlink.test +++ b/tests/readlink.test @@ -17,6 +17,7 @@ testing "-f missing" "readlink -f notfound" "$APWD/notfound\n" "" "" ln -sf notfound link testing "link" "readlink link" "notfound\n" "" "" +testing "links" "readlink link link" "notfound\nnotfound\n" "" "" testing "link->missing" "readlink -f link" "$APWD/notfound\n" "" "" ln -sf ../../ link testing "stays relative" "readlink link" "../../\n" "" "" -- cgit v1.2.3