forked from OSchip/llvm-project
[Remarks] Fix unit test by only checking for the path
http://lab.llvm.org:8011/builders/clang-ppc64be-linux/builds/39536/steps/ninja%20check%201/logs/FAIL%3A%20LLVM-Unit%3A%3AYAMLRemarks.ParsingBadMeta llvm-svn: 375014
This commit is contained in:
parent
f998fa2924
commit
437f362c33
|
@ -720,14 +720,13 @@ TEST(YAMLRemarks, ParsingBadMeta) {
|
|||
"\0\0\0\0\0\0\0\0"
|
||||
"/path/",
|
||||
30),
|
||||
"'/path/': No such file or directory",
|
||||
CmpType::Contains);
|
||||
"'/path/'", CmpType::Contains);
|
||||
|
||||
parseExpectErrorMeta(StringRef("REMARKS\0"
|
||||
"\0\0\0\0\0\0\0\0"
|
||||
"\0\0\0\0\0\0\0\0"
|
||||
"/path/",
|
||||
30),
|
||||
"'/baddir/path/': No such file or directory",
|
||||
CmpType::Contains, StringRef("/baddir/"));
|
||||
"'/baddir/path/'", CmpType::Contains,
|
||||
StringRef("/baddir/"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue