Home
last modified time | relevance | path

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

/external/autotest/client/site_tests/policy_RestoreOnStartupURLs/
Dpolicy_RestoreOnStartupURLs.py34 TEST_CASES = { variable in policy_RestoreOnStartupURLs
90 if self.TEST_CASES[case] is None:
94 policy_value = ','.join(self.TEST_CASES[case])
96 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_JavaScriptBlockedForUrls/
Dpolicy_JavaScriptBlockedForUrls.py55 TEST_CASES = { variable in policy_JavaScriptBlockedForUrls
145 if not self.TEST_CASES[case]:
148 policy_value = ','.join(self.TEST_CASES[case])
149 policy_json = {'JavaScriptBlockedForUrls': self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_JavaScriptAllowedForUrls/
Dpolicy_JavaScriptAllowedForUrls.py53 TEST_CASES = { variable in policy_JavaScriptAllowedForUrls
144 if not self.TEST_CASES[case]:
147 policy_value = ','.join(self.TEST_CASES[case])
148 policy_json = {'JavaScriptAllowedForUrls': self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_URLWhitelist/
Dpolicy_URLWhitelist.py50 TEST_CASES = { variable in policy_URLWhitelist
186 if not self.TEST_CASES[case]:
189 policy_value = ','.join(self.TEST_CASES[case])
190 policies_json.update({'URLWhitelist': self.TEST_CASES[case]})
/external/autotest/client/site_tests/policy_ImagesBlockedForUrls/
Dpolicy_ImagesBlockedForUrls.py53 TEST_CASES = { variable in policy_ImagesBlockedForUrls
129 if case not in self.TEST_CASES:
162 for case in sorted(self.TEST_CASES):
168 for case, value in sorted(self.TEST_CASES.items()):
/external/autotest/client/site_tests/policy_ImagesAllowedForUrls/
Dpolicy_ImagesAllowedForUrls.py52 TEST_CASES = { variable in policy_ImagesAllowedForUrls
128 if case not in self.TEST_CASES:
161 for case in sorted(self.TEST_CASES):
167 for case, value in sorted(self.TEST_CASES.items()):
/external/autotest/client/site_tests/policy_EditBookmarksEnabled/
Dpolicy_EditBookmarksEnabled.py50 TEST_CASES = { variable in policy_EditBookmarksEnabled
124 policy_value = self.json_string(self.TEST_CASES[case])
125 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_CookiesBlockedForUrls/
Dpolicy_CookiesBlockedForUrls.py50 TEST_CASES = { variable in policy_CookiesBlockedForUrls
123 policy_value = ','.join(self.TEST_CASES[case])
124 policy_json = {'CookiesBlockedForUrls': self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_CookiesAllowedForUrls/
Dpolicy_CookiesAllowedForUrls.py52 TEST_CASES = { variable in policy_CookiesAllowedForUrls
123 policy_value = ','.join(self.TEST_CASES[case])
124 policy_json = {POLICY_NAME: self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_PopupsBlockedForUrls/
Dpolicy_PopupsBlockedForUrls.py46 TEST_CASES = { variable in policy_PopupsBlockedForUrls
124 policy_value = ','.join(self.TEST_CASES[case])
125 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_PopupsAllowedForUrls/
Dpolicy_PopupsAllowedForUrls.py46 TEST_CASES = { variable in policy_PopupsAllowedForUrls
124 policy_value = ','.join(self.TEST_CASES[case])
125 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_ManagedBookmarks/
Dpolicy_ManagedBookmarks.py56 TEST_CASES = { variable in policy_ManagedBookmarks
170 if self.TEST_CASES[case] is None:
174 policy_value = self.TEST_CASES[case]
/external/autotest/client/site_tests/policy_ProxySettings/
Dpolicy_ProxySettings.py133 TEST_CASES = { variable in policy_ProxySettings
198 policy_value = self.TEST_CASES[case]
199 policies_json = {POLICY_NAME: self.TEST_CASES[case]}
/external/autotest/client/site_tests/policy_URLBlacklist/
Dpolicy_URLBlacklist.py47 TEST_CASES = { variable in policy_URLBlacklist
167 if case not in self.TEST_CASES:
/external/autotest/client/cros/
Denterprise_policy_base.py448 if test_case not in self.TEST_CASES:
460 for test_case in sorted(self.TEST_CASES):
466 for test_case, value in sorted(self.TEST_CASES.items()):
/external/sfntly/cpp/
DCMakeLists.txt78 file(GLOB TEST_CASES src/test/*.cc src/test/autogenerated/*.cc)
85 ${TEST_CASES} ${CHROME_SUBSETTER_LIB}
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageViewTests.cpp350 #define ADD_SUBRESOURCE_RANGE_TESTS(TEST_CASES) \ in createSubresourceRangeTests() argument
352 for (int configNdx = 0; configNdx < DE_LENGTH_OF_ARRAY(TEST_CASES); configNdx++) \ in createSubresourceRangeTests()
355 const TestCaseConfig config = TEST_CASES[configNdx]; \ in createSubresourceRangeTests()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTestMessageFormat.java1528 Object[][] TEST_CASES = { in TestNullArgs() local
1537 for (int i = 0; i < TEST_CASES.length; i++) { in TestNullArgs()
1538 String text = msgfmt.format(TEST_CASES[i][0]); in TestNullArgs()
1539 if (!text.equals(TEST_CASES[i][1])) { in TestNullArgs()
1540 errln("FAIL: Returned[" + text + "] Expected[" + TEST_CASES[i][1] + "]"); in TestNullArgs()
DNumberFormatTest.java3839 final Object[][] TEST_CASES = { in TestRoundingBehavior() local
3884 for (Object[] testCase : TEST_CASES) { in TestRoundingBehavior()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTestMessageFormat.java1524 Object[][] TEST_CASES = { in TestNullArgs() local
1533 for (int i = 0; i < TEST_CASES.length; i++) { in TestNullArgs()
1534 String text = msgfmt.format(TEST_CASES[i][0]); in TestNullArgs()
1535 if (!text.equals(TEST_CASES[i][1])) { in TestNullArgs()
1536 errln("FAIL: Returned[" + text + "] Expected[" + TEST_CASES[i][1] + "]"); in TestNullArgs()
DNumberFormatTest.java3835 final Object[][] TEST_CASES = { in TestRoundingBehavior() local
3880 for (Object[] testCase : TEST_CASES) { in TestRoundingBehavior()