From 2ec9f7df832cf4ea702ecacff255869a1fac6252 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 10 Dec 2013 02:00:48 +0000 Subject: [PATCH] Try to fix the test for Windows paths after r196859 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196862 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Frontend/system-header-prefix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Frontend/system-header-prefix.c b/test/Frontend/system-header-prefix.c index 31194d96e5..449804579f 100644 --- a/test/Frontend/system-header-prefix.c +++ b/test/Frontend/system-header-prefix.c @@ -3,9 +3,9 @@ #include "src/all.h" // CHECK-NOT: BOOST -// CHECK: libs/mylib/warn.h:1:5: warning: 'MYLIB' is not defined, evaluates to 0 +// CHECK: libs{{/|\\}}mylib{{/|\\}}warn.h:1:5: warning: 'MYLIB' is not defined, evaluates to 0 // CHECK-NOT: BOOST -// CHECK: libs/mylib/warn.h:1:5: warning: 'MYLIB' is not defined, evaluates to 0 +// CHECK: libs{{/|\\}}mylib{{/|\\}}warn.h:1:5: warning: 'MYLIB' is not defined, evaluates to 0 // CHECK-NOT: BOOST -// CHECK: src/warn.h:1:5: warning: 'SRC' is not defined, evaluates to 0 +// CHECK: src{{/|\\}}warn.h:1:5: warning: 'SRC' is not defined, evaluates to 0 // CHECK-NOT: BOOST -- 2.40.0