From: Douglas Yung Date: Fri, 9 Nov 2018 02:44:07 +0000 (+0000) Subject: Fix test from r346439 to also work on Windows due to path separator differences. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b902d3e908c8cbbe7707627040848f5368b8f80;p=clang Fix test from r346439 to also work on Windows due to path separator differences. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@346468 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Modules/mismatch-diagnostics.cpp b/test/Modules/mismatch-diagnostics.cpp index 7754bcee73..038e367e39 100644 --- a/test/Modules/mismatch-diagnostics.cpp +++ b/test/Modules/mismatch-diagnostics.cpp @@ -17,6 +17,6 @@ export module mismatching_module; #ifdef CHECK_MISMATCH import mismatching_module; // CHECK: error: POSIX thread support was enabled in PCH file but is currently disabled -// CHECK-NEXT: module file {{.*}}/mismatching_module.pcm cannot be loaded due to a configuration mismatch with the current compilation +// CHECK-NEXT: module file {{.*[/|\\\\]}}mismatching_module.pcm cannot be loaded due to a configuration mismatch with the current compilation #endif