diff options
Diffstat (limited to 'clang-tools-extra/test/clang-move/move-function.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-move/move-function.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/clang-tools-extra/test/clang-move/move-function.cpp b/clang-tools-extra/test/clang-move/move-function.cpp index ceda2d5a0fc..0324b80641d 100644 --- a/clang-tools-extra/test/clang-move/move-function.cpp +++ b/clang-tools-extra/test/clang-move/move-function.cpp @@ -1,5 +1,6 @@ // RUN: mkdir -p %T/move-function -// RUN: cp %S/Inputs/function_test* %T/move-function +// RUN: cat %S/Inputs/function_test.h > %T/move-function/function_test.h +// RUN: cat %S/Inputs/function_test.cpp > %T/move-function/function_test.cpp // RUN: cd %T/move-function // RUN: clang-move -names="g" -new_header=%T/move-function/new_function_test.h -old_header=../move-function/function_test.h %T/move-function/function_test.cpp -- // RUN: FileCheck -input-file=%T/move-function/new_function_test.h -check-prefix=CHECK-NEW-TEST-H-CASE1 %s @@ -39,12 +40,14 @@ // CHECK-NEW-TEST-CPP-CASE3: {{[[:space:]]+}} // CHECK-NEW-TEST-CPP-CASE3: void f() {} // -// RUN: cp %S/Inputs/function_test* %T/move-function +// RUN: cat %S/Inputs/function_test.h > %T/move-function/function_test.h +// RUN: cat %S/Inputs/function_test.cpp > %T/move-function/function_test.cpp // RUN: clang-move -names="A::f" -new_header=%T/move-function/new_function_test.h -new_cc=%T/move-function/new_function_test.cpp -old_header=../move-function/function_test.h -old_cc=../move-function/function_test.cpp %T/move-function/function_test.cpp -dump_result -- | FileCheck %s -check-prefix=CHECK-EMPTY // // CHECK-EMPTY: [{{[[:space:]]*}}] // -// RUN: cp %S/Inputs/function_test* %T/move-function +// RUN: cat %S/Inputs/function_test.h > %T/move-function/function_test.h +// RUN: cat %S/Inputs/function_test.cpp > %T/move-function/function_test.cpp // RUN: clang-move -names="f,A" -new_header=%T/move-function/new_function_test.h -new_cc=%T/move-function/new_function_test.cpp -old_header=../move-function/function_test.h -old_cc=../move-function/function_test.cpp %T/move-function/function_test.cpp -- // RUN: FileCheck -input-file=%T/move-function/new_function_test.h -check-prefix=CHECK-NEW-TEST-H-CASE4 %s // RUN: FileCheck -input-file=%T/move-function/new_function_test.cpp -check-prefix=CHECK-NEW-TEST-CPP-CASE4 %s |