Home
last modified time | relevance | path

Searched refs:TestTwoFlags (Results 1 – 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_flags_test.cc85 static void TestTwoFlags(const char *env, bool expected_flag1, in TestTwoFlags() function
103 TestTwoFlags("flag1=1 flag2='zzz'", true, "zzz"); in TEST()
104 TestTwoFlags("flag2='qxx' flag1=0", false, "qxx"); in TEST()
105 TestTwoFlags("flag1=false:flag2='zzz'", false, "zzz"); in TEST()
106 TestTwoFlags("flag2=qxx:flag1=yes", true, "qxx"); in TEST()
107 TestTwoFlags("flag2=qxx\nflag1=yes", true, "qxx"); in TEST()
108 TestTwoFlags("flag2=qxx\r\nflag1=yes", true, "qxx"); in TEST()
109 TestTwoFlags("flag2=qxx\tflag1=yes", true, "qxx"); in TEST()
113 TestTwoFlags("flag=1 other_flag='zzz'", true, "zzz", "flag", "other_flag"); in TEST()
114 TestTwoFlags("other_flag='zzz' flag=1", true, "zzz", "flag", "other_flag"); in TEST()
[all …]