r355819 - Remove an unnecessary -f when cp'ing to a file that was just deleted. NFC.
Benjamin Kramer via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 11 03:44:10 PDT 2019
Author: d0k
Date: Mon Mar 11 03:44:10 2019
New Revision: 355819
URL: http://llvm.org/viewvc/llvm-project?rev=355819&view=rev
Log:
Remove an unnecessary -f when cp'ing to a file that was just deleted. NFC.
Modified:
cfe/trunk/test/Modules/relative-import-path.c
Modified: cfe/trunk/test/Modules/relative-import-path.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/relative-import-path.c?rev=355819&r1=355818&r2=355819&view=diff
==============================================================================
--- cfe/trunk/test/Modules/relative-import-path.c (original)
+++ cfe/trunk/test/Modules/relative-import-path.c Mon Mar 11 03:44:10 2019
@@ -1,5 +1,5 @@
// RUN: rm -rf %t
-// RUN: cp -rf %S/Inputs/relative-import-path %t
+// RUN: cp -r %S/Inputs/relative-import-path %t
// RUN: cp %s %t/t.c
// Use FileCheck, which is more flexible.
More information about the cfe-commits
mailing list