diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-11-30 23:40:49 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-11-30 23:40:49 +0000 |
commit | 5a98f1da0e6eb5c4776f513eacc7756eaf15dff3 (patch) | |
tree | c05ef1caa85baa854dd108fb227b97a34b495468 | |
parent | 14afab36c73c32a831838ba80f36136a80d9e6db (diff) |
Fix test for Windows path separators
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169058 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Modules/build-fail-notes.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Modules/build-fail-notes.m b/test/Modules/build-fail-notes.m index 8ab1cbc261..304140e0ec 100644 --- a/test/Modules/build-fail-notes.m +++ b/test/Modules/build-fail-notes.m @@ -21,11 +21,11 @@ extern int Module; // RUN: %clang_cc1 -fmodule-cache-path %t -fmodules -F %S/Inputs -DgetModuleVersion="epic fail" -serialize-diagnostic-file %t.diag %s 2>&1 || true // RUN: c-index-test -read-diagnostics %t.diag 2>&1 | FileCheck -check-prefix=CHECK-SDIAG %s -// CHECK-SDIAG: Inputs/Module.framework/Headers/Module.h:9:13: error: expected ';' after top level declarator +// CHECK-SDIAG: Module.h:9:13: error: expected ';' after top level declarator // CHECK-SDIAG: build-fail-notes.m:4:32: note: while building module 'DependsOnModule' imported from -// CHECK-SDIAG: Inputs/DependsOnModule.framework/Headers/DependsOnModule.h:1:10: note: while building module 'Module' imported from +// CHECK-SDIAG: DependsOnModule.h:1:10: note: while building module 'Module' imported from // CHECK-SDIAG: note: expanded from macro 'getModuleVersion' // CHECK-SDIAG: warning: umbrella header does not include header 'NotInModule.h' [-Wincomplete-umbrella] -// CHECK-SDIAG: Inputs/DependsOnModule.framework/Headers/DependsOnModule.h:1:10: fatal: could not build module 'Module' +// CHECK-SDIAG: DependsOnModule.h:1:10: fatal: could not build module 'Module' // CHECK-SDIAG: build-fail-notes.m:4:32: note: while building module 'DependsOnModule' imported from |