Searched refs:TestStrFlag (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_flags_test.cc31 static void TestStrFlag(const char *start_value, const char *env, function in namespace:__sanitizer
59 TestStrFlag("zzz", 0, "zzz");
60 TestStrFlag("zzz", "flag_name", "zzz");
61 TestStrFlag("zzz", "--flag_name=", "");
62 TestStrFlag("", "--flag_name=abc", "abc");
63 TestStrFlag("", "--flag_name='abc zxc'", "abc zxc");
64 TestStrFlag("", "--flag_name='abc zxcc'", "abc zxcc");
65 TestStrFlag("", "--flag_name=\"abc qwe\" asd", "abc qwe");
66 TestStrFlag("", "other_flag_name=zzz", "");

Completed in 169 milliseconds