r313266 - Fix Refactor/tool-test-support.c test on Windows by avoiding
Alex Lorenz via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 14 08:10:39 PDT 2017
Author: arphaman
Date: Thu Sep 14 08:10:39 2017
New Revision: 313266
URL: http://llvm.org/viewvc/llvm-project?rev=313266&view=rev
Log:
Fix Refactor/tool-test-support.c test on Windows by avoiding
the STDERR redirect
Modified:
cfe/trunk/test/Refactor/tool-test-support.c
Modified: cfe/trunk/test/Refactor/tool-test-support.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Refactor/tool-test-support.c?rev=313266&r1=313265&r2=313266&view=diff
==============================================================================
--- cfe/trunk/test/Refactor/tool-test-support.c (original)
+++ cfe/trunk/test/Refactor/tool-test-support.c Thu Sep 14 08:10:39 2017
@@ -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:
More information about the cfe-commits
mailing list