Searched refs:testTwoFlags (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
D | flags_test.cpp | 76 static void testTwoFlags(const char *Env, bool ExpectedFlag1, in testTwoFlags() function 92 testTwoFlags("flag1=1 flag2=42", true, 42); in TEST() 93 testTwoFlags("flag2=-1 flag1=0", false, -1); in TEST() 94 testTwoFlags("flag1=false:flag2=1337", false, 1337); in TEST() 95 testTwoFlags("flag2=42:flag1=yes", true, 42); in TEST() 96 testTwoFlags("flag2=42\nflag1=yes", true, 42); in TEST() 97 testTwoFlags("flag2=42\r\nflag1=yes", true, 42); in TEST() 98 testTwoFlags("flag2=42\tflag1=yes", true, 42); in TEST() 102 testTwoFlags("flag=1 other_flag=42", true, 42, "flag", "other_flag"); in TEST() 103 testTwoFlags("other_flag=42 flag=1", true, 42, "flag", "other_flag"); in TEST()
|
/external/scudo/standalone/tests/ |
D | flags_test.cpp | 76 static void testTwoFlags(const char *Env, bool ExpectedFlag1, in testTwoFlags() function 92 testTwoFlags("flag1=1 flag2=42", true, 42); in TEST() 93 testTwoFlags("flag2=-1 flag1=0", false, -1); in TEST() 94 testTwoFlags("flag1=false:flag2=1337", false, 1337); in TEST() 95 testTwoFlags("flag2=42:flag1=yes", true, 42); in TEST() 96 testTwoFlags("flag2=42\nflag1=yes", true, 42); in TEST() 97 testTwoFlags("flag2=42\r\nflag1=yes", true, 42); in TEST() 98 testTwoFlags("flag2=42\tflag1=yes", true, 42); in TEST() 102 testTwoFlags("flag=1 other_flag=42", true, 42, "flag", "other_flag"); in TEST() 103 testTwoFlags("other_flag=42 flag=1", true, 42, "flag", "other_flag"); in TEST()
|