Searched refs:ExpectParseError (Results 1 – 1 of 1) sorted by relevance
/external/llvm/unittests/Support/ |
D | YAMLParserTest.cpp | 32 static void ExpectParseError(StringRef Message, StringRef Input) { in ExpectParseError() function 52 ExpectParseError("Not closing array", "["); in TEST() 53 ExpectParseError("Not closing array", " [ "); in TEST() 54 ExpectParseError("Not closing array", " [x"); in TEST() 76 ExpectParseError("Missing close on empty", "[{]"); in TEST() 77 ExpectParseError("Missing close after pair", "[{\"a\":\"b\"]"); in TEST() 81 ExpectParseError("Missing colon between key and value", "[{\"a\"\"/b\"}]"); in TEST() 82 ExpectParseError("Missing colon between key and value", "[{\"a\" \"b\"}]"); in TEST() 86 ExpectParseError("Missing open quote", "[{a\":\"b\"}]"); in TEST() 87 ExpectParseError("Missing closing quote", "[{\"a\":\"b}]"); in TEST() [all …]
|