clang/test/PCH/pch-dir.c: Relax expressions of path separators for Win32.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 23 Oct 2012 07:01:50 +0000 (07:01 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 23 Oct 2012 07:01:50 +0000 (07:01 +0000)
llvm-svn: 166471

clang/test/PCH/pch-dir.c

index 64b2cd6..1c7bf40 100644 (file)
 
 int get() {
 #ifdef __cplusplus
-  // CHECK-CPP: .h.gch/cpp.gch
+  // CHECK-CPP: .h.gch{{[/\\]}}cpp.gch
   return i;
 #else
-  // CHECK-C: .h.gch/c.gch
+  // CHECK-C: .h.gch{{[/\\]}}c.gch
   return j;
 #endif
 }