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.cc88 static void TestTwoFlags(const char *env, bool expected_flag1, in TestTwoFlags() function
109 TestTwoFlags("flag1=1 flag2='zzz'", true, "zzz"); in TEST()
110 TestTwoFlags("flag2='qxx' flag1=0", false, "qxx"); in TEST()
111 TestTwoFlags("flag1=false:flag2='zzz'", false, "zzz"); in TEST()
112 TestTwoFlags("flag2=qxx:flag1=yes", true, "qxx"); in TEST()
113 TestTwoFlags("flag2=qxx\nflag1=yes", true, "qxx"); in TEST()
114 TestTwoFlags("flag2=qxx\r\nflag1=yes", true, "qxx"); in TEST()
115 TestTwoFlags("flag2=qxx\tflag1=yes", true, "qxx"); in TEST()
119 TestTwoFlags("flag=1 other_flag='zzz'", true, "zzz", "flag", "other_flag"); in TEST()
120 TestTwoFlags("other_flag='zzz' flag=1", true, "zzz", "flag", "other_flag"); in TEST()
[all …]