diff options
| author | Alex Lorenz <arphaman@gmail.com> | 2017-09-14 15:10:39 +0000 |
|---|---|---|
| committer | Alex Lorenz <arphaman@gmail.com> | 2017-09-14 15:10:39 +0000 |
| commit | 18633071a3c4538202d0727c3efbcd8e2521e6ba (patch) | |
| tree | 373b678ae947f04e93469f88714a3715d5081735 | |
| parent | e1a6074b52f07383144ebc2552712fa5d73b0e58 (diff) | |
| download | bcm5719-llvm-18633071a3c4538202d0727c3efbcd8e2521e6ba.tar.gz bcm5719-llvm-18633071a3c4538202d0727c3efbcd8e2521e6ba.zip | |
Fix Refactor/tool-test-support.c test on Windows by avoiding
the STDERR redirect
llvm-svn: 313266
| -rw-r--r-- | clang/test/Refactor/tool-test-support.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/Refactor/tool-test-support.c b/clang/test/Refactor/tool-test-support.c index 877a0755799..f75b2f9f19a 100644 --- a/clang/test/Refactor/tool-test-support.c +++ b/clang/test/Refactor/tool-test-support.c @@ -1,4 +1,4 @@ -// RUN: clang-refactor local-rename -selection=test:%s -v %s -- 2>&1 | FileCheck %s +// RUN: clang-refactor local-rename -selection=test:%s -v %s -- | FileCheck %s /*range=*/int test; @@ -11,12 +11,12 @@ /*range named =+0*/int test5; // CHECK: Test selection group '': -// CHECK-NEXT: 95-95 -// CHECK-NEXT: 148-148 -// CHECK-NEXT: 187-187 +// CHECK-NEXT: 90-90 +// CHECK-NEXT: 143-143 +// CHECK-NEXT: 182-182 // CHECK-NEXT: Test selection group 'named': -// CHECK-NEXT: 122-122 -// CHECK-NEXT: 208-208 +// CHECK-NEXT: 117-117 +// CHECK-NEXT: 203-203 // The following invocations are in the default group: |

