From 69c8c699aaa69e281e4a01be0f48a6498d3ac7cb Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 11 Oct 2015 16:27:55 +0200 Subject: randconfig fixes Signed-off-by: Denys Vlasenko --- testsuite/pwd/pwd-prints-working-directory | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'testsuite/pwd') diff --git a/testsuite/pwd/pwd-prints-working-directory b/testsuite/pwd/pwd-prints-working-directory index 8575347d6..971adb5a6 100644 --- a/testsuite/pwd/pwd-prints-working-directory +++ b/testsuite/pwd/pwd-prints-working-directory @@ -1 +1,4 @@ -test $(pwd) = $(busybox pwd) +# shell's $PWD may leave symlinks unresolved. +# "pwd" may be a built-in and have the same problem. +# External pwd _can't_ have that problem (current dir on Unix is physical). +test $(`which pwd`) = $(busybox pwd) -- cgit v1.2.3