r357922 - Remove a bogus sed option in test.
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 8 09:34:40 PDT 2019
Author: alexfh
Date: Mon Apr 8 09:34:38 2019
New Revision: 357922
URL: http://llvm.org/viewvc/llvm-project?rev=357922&view=rev
Log:
Remove a bogus sed option in test.
Modified:
cfe/trunk/test/Tooling/clang-check-fixit.cpp
Modified: cfe/trunk/test/Tooling/clang-check-fixit.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Tooling/clang-check-fixit.cpp?rev=357922&r1=357921&r2=357922&view=diff
==============================================================================
--- cfe/trunk/test/Tooling/clang-check-fixit.cpp (original)
+++ cfe/trunk/test/Tooling/clang-check-fixit.cpp Mon Apr 8 09:34:38 2019
@@ -1,10 +1,10 @@
// RUN: rm -rf %t
// RUN: mkdir %t
//
-// RUN: sed -s 's,^//.*,//,' %s > %t/absolute-fixed.cpp
-// RUN: sed -s 's,^//.*,//,' %s > %t/absolute-json.cpp
-// RUN: sed -s 's,^//.*,//,' %s > %t/relative-fixed.cpp
-// RUN: sed -s 's,^//.*,//,' %s > %t/relative-json.cpp
+// RUN: sed 's,^//.*,//,' %s > %t/absolute-fixed.cpp
+// RUN: sed 's,^//.*,//,' %s > %t/absolute-json.cpp
+// RUN: sed 's,^//.*,//,' %s > %t/relative-fixed.cpp
+// RUN: sed 's,^//.*,//,' %s > %t/relative-json.cpp
//
// RUN: clang-check %t/absolute-fixed.cpp -fixit -- 2>&1 | FileCheck %s
//
More information about the cfe-commits
mailing list