From 00bc47268644fe380dd19cc54acca1a3a8d9a3d7 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Tue, 20 Jun 2017 20:50:54 +0000 Subject: [PATCH] Don't expect :sF_flag to fail anymore While here, also add a check to verify that the link target is updated in the testcase MFC after: 1 month MFC with: r320172 PR: 219943 Differential Revision: D11167 Submitted by: shivansh Sponsored by: Google (GSoC 2017) --- bin/ln/tests/ln_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ln/tests/ln_test.sh b/bin/ln/tests/ln_test.sh index e7aac2dcebb..e1f5b47c262 100644 --- a/bin/ln/tests/ln_test.sh +++ b/bin/ln/tests/ln_test.sh @@ -160,10 +160,10 @@ sF_flag_head() sF_flag_body() { - atf_expect_fail "B isn't being unlinked (bug 219943)" atf_check mkdir A B atf_check ln -sF A B atf_check -o inline:'Symbolic Link\n' stat -f %SHT B + atf_check -o inline:'A\n' readlink B } atf_test_case sf_flag