Lines Matching refs:self
62 def __init__(self, argv): argument
73 self.test_root = sys.argv[1]
74 self.out_dir = sys.argv[2]
75 self.temp_dir = sys.argv[3]
76 self.android_root = sys.argv[4]
77 self.doclet_path = sys.argv[5]
79 self.test_repository = os.path.join(self.out_dir, 'repository/testcases')
80 self.plan_repository = os.path.join(self.out_dir, 'repository/plans')
81 self.definedplans_repository = os.path.join(self.android_root, 'cts/tests/plans')
83 def GenerateTestDescriptions(self): argument
93 def __WritePlan(self, plan, plan_name): argument
95 plan.Write(os.path.join(self.plan_repository, plan_name + '.xml'))
97 def GenerateTestPlans(self): argument
102 descriptions = sorted(glob.glob(os.path.join(self.test_repository, '*.xml')))
111 self.__WritePlan(plan, 'CTS')
112 self.__WritePlan(plan, 'CTS-TF')
118 self.__WritePlan(plan, 'CTS-No-Media-Stream')
122 self.__WritePlan(plan, 'SDK')
126 self.__WritePlan(plan, 'Android')
131 self.__WritePlan(plan, 'Java')
136 self.__WritePlan(plan, 'Harmony')
140 self.__WritePlan(plan, 'VM-TF')
144 self.__WritePlan(plan, 'AppSecurity')
160 self.__WritePlan(plan, 'PDK')
173 self.__WritePlan(plan, 'CTS-stable')
182 self.__WritePlan(plan, 'CTS-flaky')
198 self.__WritePlan(plan, 'CTS-kitkat-small')
199 self.__WritePlan(plan, 'CTS-public-small')
211 self.__WritePlan(plan, 'CTS-kitkat-medium')
212 self.__WritePlan(plan, 'CTS-public-medium')
223 self.__WritePlan(plan, 'CTS-hardware')
235 self.__WritePlan(plan, 'CTS-media')
246 self.__WritePlan(plan, 'CTS-mediastress')
258 self.__WritePlan(plan, 'CTS-l-tests')
264 self.__WritePlan(plan, 'CTS-DEQP')
284 self.__WritePlan(plan, 'CTS-m-tests')
293 self.__WritePlan(plan, 'CTS-staging')
297 self.__WritePlan(plan, 'CTS-webview')