diff options
author | Reid Kleckner <reid@kleckner.net> | 2014-12-12 18:52:07 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2014-12-12 18:52:07 +0000 |
commit | 5135227549b4efa4f021f24ecadc3d88b986f8c8 (patch) | |
tree | c7f7cea142b91353a946e12d3421ace9b1179fbd | |
parent | f179d12e50a9afd446bcf5ac4b4800ec0dcbe200 (diff) | |
download | bcm5719-llvm-5135227549b4efa4f021f24ecadc3d88b986f8c8.tar.gz bcm5719-llvm-5135227549b4efa4f021f24ecadc3d88b986f8c8.zip |
Relax debug-map-parsing.test error message check for Windows
On Windows we get the string "no such file or directory".
llvm-svn: 224141
-rw-r--r-- | llvm/test/tools/dsymutil/debug-map-parsing.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/tools/dsymutil/debug-map-parsing.test b/llvm/test/tools/dsymutil/debug-map-parsing.test index 11d2fa77091..4fa7e715b97 100644 --- a/llvm/test/tools/dsymutil/debug-map-parsing.test +++ b/llvm/test/tools/dsymutil/debug-map-parsing.test @@ -36,13 +36,13 @@ CHECK-LTO: END DEBUG MAP Check that we warn about missing object files (this presumes that the files aren't present in the machine's /Inputs/ folder, which should be a pretty safe bet). -NOT-FOUND: cannot open{{.*}}"/Inputs/basic1.macho.x86_64.o": No such file -NOT-FOUND: cannot open{{.*}}"/Inputs/basic2.macho.x86_64.o": No such file -NOT-FOUND: cannot open{{.*}}"/Inputs/basic3.macho.x86_64.o": No such file +NOT-FOUND: cannot open{{.*}}"/Inputs/basic1.macho.x86_64.o": {{[Nn]o}} such file +NOT-FOUND: cannot open{{.*}}"/Inputs/basic2.macho.x86_64.o": {{[Nn]o}} such file +NOT-FOUND: cannot open{{.*}}"/Inputs/basic3.macho.x86_64.o": {{[Nn]o}} such file NOT-FOUND: DEBUG MAP: NOT-FOUND-NEXT: END DEBUG MAP Check that we correctly error out on invalid executatble. -NO-EXECUTABLE: cannot parse{{.*}}/inexistant": No such file +NO-EXECUTABLE: cannot parse{{.*}}/inexistant": {{[Nn]o}} such file NO-EXECUTABLE-NOT: DEBUG MAP |