blob: cdd6e10884088553cb9c8fede73dd319017bd81e [file] [log] [blame]
Phil Dubachec19a572009-08-21 15:20:13 -07001#!/usr/bin/python
Phil Dubach0d6ef062009-08-12 18:13:16 -07002
3# Copyright (C) 2009 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17"""Module for generating CTS test descriptions and test plans."""
18
19import glob
20import os
21import re
Unsuk Jung2a692d12013-09-29 20:57:32 -070022import shutil
Phil Dubach0d6ef062009-08-12 18:13:16 -070023import subprocess
24import sys
25import xml.dom.minidom as dom
26from cts import tools
Brian Muramatsu9157e0a2011-04-05 18:06:15 -070027from multiprocessing import Pool
Phil Dubach0d6ef062009-08-12 18:13:16 -070028
29def GetSubDirectories(root):
30 """Return all directories under the given root directory."""
31 return [x for x in os.listdir(root) if os.path.isdir(os.path.join(root, x))]
32
33
34def GetMakeFileVars(makefile_path):
35 """Extracts variable definitions from the given make file.
36
37 Args:
38 makefile_path: Path to the make file.
39
40 Returns:
41 A dictionary mapping variable names to their assigned value.
42 """
43 result = {}
44 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
45 stream = open(makefile_path, 'r')
46 content = stream.read()
47 for match in pattern.finditer(content):
48 result[match.group(1)] = match.group(2)
49 stream.close()
50 return result
51
52
53class CtsBuilder(object):
54 """Main class for generating test descriptions and test plans."""
55
56 def __init__(self, argv):
57 """Initialize the CtsBuilder from command line arguments."""
Keun young Parkd93d0d12013-01-10 14:11:35 -080058 if len(argv) != 6:
59 print 'Usage: %s <testRoot> <ctsOutputDir> <tempDir> <androidRootDir> <docletPath>' % argv[0]
Phil Dubach0d6ef062009-08-12 18:13:16 -070060 print ''
61 print 'testRoot: Directory under which to search for CTS tests.'
62 print 'ctsOutputDir: Directory in which the CTS repository should be created.'
63 print 'tempDir: Directory to use for storing temporary files.'
64 print 'androidRootDir: Root directory of the Android source tree.'
65 print 'docletPath: Class path where the DescriptionGenerator doclet can be found.'
66 sys.exit(1)
67 self.test_root = sys.argv[1]
68 self.out_dir = sys.argv[2]
69 self.temp_dir = sys.argv[3]
70 self.android_root = sys.argv[4]
71 self.doclet_path = sys.argv[5]
72
73 self.test_repository = os.path.join(self.out_dir, 'repository/testcases')
74 self.plan_repository = os.path.join(self.out_dir, 'repository/plans')
Unsuk Jung08d97f92013-09-29 22:40:22 -070075 self.definedplans_repository = os.path.join(self.android_root, 'cts/tests/plans')
Phil Dubach0d6ef062009-08-12 18:13:16 -070076
Phil Dubach0d6ef062009-08-12 18:13:16 -070077 def GenerateTestDescriptions(self):
78 """Generate test descriptions for all packages."""
Brian Muramatsu5df641c2011-12-28 15:46:57 -080079 pool = Pool(processes=2)
Brian Muramatsu9157e0a2011-04-05 18:06:15 -070080
Phil Dubach0d6ef062009-08-12 18:13:16 -070081 # individually generate descriptions not following conventions
Brian Muramatsu9157e0a2011-04-05 18:06:15 -070082 pool.apply_async(GenerateSignatureCheckDescription, [self.test_repository])
Phil Dubach0d6ef062009-08-12 18:13:16 -070083
84 # generate test descriptions for android tests
Brian Muramatsubdcfc7c2011-12-01 14:32:02 -080085 results = []
Brian Muramatsu9157e0a2011-04-05 18:06:15 -070086 pool.close()
87 pool.join()
Brian Muramatsubdcfc7c2011-12-01 14:32:02 -080088 return sum(map(lambda result: result.get(), results))
Phil Dubach0d6ef062009-08-12 18:13:16 -070089
90 def __WritePlan(self, plan, plan_name):
91 print 'Generating test plan %s' % plan_name
92 plan.Write(os.path.join(self.plan_repository, plan_name + '.xml'))
93
94 def GenerateTestPlans(self):
95 """Generate default test plans."""
96 # TODO: Instead of hard-coding the plans here, use a configuration file,
97 # such as test_defs.xml
98 packages = []
Phil Dubach8dcedfe2009-08-20 16:10:39 -070099 descriptions = sorted(glob.glob(os.path.join(self.test_repository, '*.xml')))
Phil Dubach0d6ef062009-08-12 18:13:16 -0700100 for description in descriptions:
101 doc = tools.XmlFile(description)
102 packages.append(doc.GetAttr('TestPackage', 'appPackageName'))
Keun young Park965d1912013-02-08 11:37:16 -0800103 # sort the list to give the same sequence based on name
104 packages.sort()
Phil Dubach0d6ef062009-08-12 18:13:16 -0700105
106 plan = tools.TestPlan(packages)
Tsu Chiang Chuangd4cce3b2011-05-12 12:19:54 -0700107 plan.Exclude('android\.performance.*')
Brian Muramatsu87ff4df2011-12-16 11:41:17 -0800108 self.__WritePlan(plan, 'CTS')
Brian Muramatsu89ae08c2012-01-03 10:55:02 -0800109 self.__WritePlan(plan, 'CTS-TF')
Tsu Chiang Chuangd4cce3b2011-05-12 12:19:54 -0700110
Keun young Parkd93d0d12013-01-10 14:11:35 -0800111 plan = tools.TestPlan(packages)
Keun young Parkd93d0d12013-01-10 14:11:35 -0800112 plan.Exclude('android\.performance.*')
Guru Nagarajan55f10db2013-06-03 13:50:37 -0700113 plan.Exclude('android\.media\.cts\.StreamingMediaPlayerTest.*')
114 # Test plan to not include media streaming tests
115 self.__WritePlan(plan, 'CTS-No-Media-Stream')
116
117 plan = tools.TestPlan(packages)
118 plan.Exclude('android\.performance.*')
Keun young Parkd93d0d12013-01-10 14:11:35 -0800119 self.__WritePlan(plan, 'SDK')
120
Phil Dubach0d6ef062009-08-12 18:13:16 -0700121 plan.Exclude(r'android\.tests\.sigtest')
122 plan.Exclude(r'android\.core.*')
123 self.__WritePlan(plan, 'Android')
124
125 plan = tools.TestPlan(packages)
126 plan.Include(r'android\.core\.tests.*')
Tsu Chiang Chuangcf7ceab2012-10-24 16:48:03 -0700127 plan.Exclude(r'android\.core\.tests\.libcore.\package.\harmony*')
Phil Dubach0d6ef062009-08-12 18:13:16 -0700128 self.__WritePlan(plan, 'Java')
129
Tsu Chiang Chuangcf7ceab2012-10-24 16:48:03 -0700130 # TODO: remove this once the tests are fixed and merged into Java plan above.
131 plan = tools.TestPlan(packages)
132 plan.Include(r'android\.core\.tests\.libcore.\package.\harmony*')
133 self.__WritePlan(plan, 'Harmony')
134
Phil Dubach0d6ef062009-08-12 18:13:16 -0700135 plan = tools.TestPlan(packages)
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700136 plan.Include(r'android\.core\.vm-tests-tf')
137 self.__WritePlan(plan, 'VM-TF')
138
139 plan = tools.TestPlan(packages)
Phil Dubach0d6ef062009-08-12 18:13:16 -0700140 plan.Include(r'android\.tests\.sigtest')
141 self.__WritePlan(plan, 'Signature')
142
143 plan = tools.TestPlan(packages)
Phil Dubach60680482009-08-19 10:13:23 -0700144 plan.Include(r'android\.tests\.appsecurity')
145 self.__WritePlan(plan, 'AppSecurity')
146
Keun young Parkff194172012-08-14 17:56:11 -0700147 # hard-coded white list for PDK plan
148 plan.Exclude('.*')
keunyoungc767cba2013-04-03 14:50:58 -0700149 plan.Include('android\.aadb')
Keun young Parkff194172012-08-14 17:56:11 -0700150 plan.Include('android\.bluetooth')
151 plan.Include('android\.graphics.*')
152 plan.Include('android\.hardware')
keunyoungde519462013-03-21 12:06:42 -0700153 plan.Include('android\.media')
154 plan.Exclude('android\.mediastress')
Keun young Parkff194172012-08-14 17:56:11 -0700155 plan.Include('android\.net')
156 plan.Include('android\.opengl.*')
157 plan.Include('android\.renderscript')
158 plan.Include('android\.telephony')
159 plan.Include('android\.nativemedia.*')
Stuart Scotta132af62013-11-07 10:30:32 -0800160 plan.Include('com\.android\.cts\..*')#TODO(stuartscott): Should PDK have all these?
Keun young Parkff194172012-08-14 17:56:11 -0700161 self.__WritePlan(plan, 'PDK')
162
Nicholas Sauer471c6012014-05-28 15:28:28 -0700163 flaky_tests = BuildCtsFlakyTestList()
164
165 # CTS Stable plan
166 plan = tools.TestPlan(packages)
Unsuk Jung7c7832b2014-09-06 20:31:08 -0700167 plan.Exclude(r'com\.android\.cts\.browserbench')
Nicholas Sauer471c6012014-05-28 15:28:28 -0700168 for package, test_list in flaky_tests.iteritems():
169 plan.ExcludeTests(package, test_list)
170 self.__WritePlan(plan, 'CTS-stable')
171
Unsuk Jung8398ab82014-09-19 03:26:39 -0700172 # CTS Flaky plan - list of tests known to be flaky in lab environment
Nicholas Sauer471c6012014-05-28 15:28:28 -0700173 plan = tools.TestPlan(packages)
174 plan.Exclude('.*')
Unsuk Jung7c7832b2014-09-06 20:31:08 -0700175 plan.Include(r'com\.android\.cts\.browserbench')
Nicholas Sauer471c6012014-05-28 15:28:28 -0700176 for package, test_list in flaky_tests.iteritems():
Unsuk Jungb5153c42014-09-19 02:12:50 -0700177 plan.Include(package+'$')
Nicholas Sauer471c6012014-05-28 15:28:28 -0700178 plan.IncludeTests(package, test_list)
179 self.__WritePlan(plan, 'CTS-flaky')
180
Unsuk Jung8398ab82014-09-19 03:26:39 -0700181 small_tests = BuildAospSmallSizeTestList()
182 medium_tests = BuildAospMediumSizeTestList()
Unsuk Jung58676122014-09-28 10:31:00 -0700183 new_test_packages = BuildCtsVettedNewPackagesList()
Unsuk Jung8398ab82014-09-19 03:26:39 -0700184
185 # CTS - sub plan for public, small size tests
186 plan = tools.TestPlan(packages)
187 plan.Exclude('.*')
188 for package, test_list in small_tests.iteritems():
189 plan.Include(package+'$')
190 for package, test_list in flaky_tests.iteritems():
191 plan.ExcludeTests(package, test_list)
192 self.__WritePlan(plan, 'CTS-kitkat-small')
193
194 # CTS - sub plan for public, medium size tests
195 plan = tools.TestPlan(packages)
196 plan.Exclude('.*')
197 for package, test_list in medium_tests.iteritems():
198 plan.Include(package+'$')
199 for package, test_list in flaky_tests.iteritems():
200 plan.ExcludeTests(package, test_list)
201 self.__WritePlan(plan, 'CTS-kitkat-medium')
202
203 # CTS - sub plan for hardware tests which is public, large
204 plan = tools.TestPlan(packages)
205 plan.Exclude('.*')
206 plan.Include(r'android\.hardware$')
207 for package, test_list in flaky_tests.iteritems():
208 plan.ExcludeTests(package, test_list)
209 self.__WritePlan(plan, 'CTS-hardware')
210
211 # CTS - sub plan for media tests which is public, large
212 plan = tools.TestPlan(packages)
213 plan.Exclude('.*')
214 plan.Include(r'android\.media$')
215 for package, test_list in flaky_tests.iteritems():
216 plan.ExcludeTests(package, test_list)
217 self.__WritePlan(plan, 'CTS-media')
218
219 # CTS - sub plan for mediastress tests which is public, large
220 plan = tools.TestPlan(packages)
221 plan.Exclude('.*')
222 plan.Include(r'android\.mediastress$')
223 for package, test_list in flaky_tests.iteritems():
224 plan.ExcludeTests(package, test_list)
225 self.__WritePlan(plan, 'CTS-mediastress')
226
Unsuk Jung58676122014-09-28 10:31:00 -0700227 # CTS - sub plan for new tests that is vetted for L launch
228 plan = tools.TestPlan(packages)
229 plan.Exclude('.*')
230 for package, test_list in new_test_packages.iteritems():
231 plan.Include(package+'$')
232 for package, test_list in flaky_tests.iteritems():
233 plan.ExcludeTests(package, test_list)
234 self.__WritePlan(plan, 'CTS-l-tests')
235
Unsuk Jung8398ab82014-09-19 03:26:39 -0700236 #CTS - sub plan for new test packages added for staging
237 plan = tools.TestPlan(packages)
238 for package, test_list in small_tests.iteritems():
239 plan.Exclude(package+'$')
240 for package, test_list in medium_tests.iteritems():
241 plan.Exclude(package+'$')
Unsuk Jung58676122014-09-28 10:31:00 -0700242 for package, tests_list in new_test_packages.iteritems():
243 plan.Exclude(package+'$')
Unsuk Jung8398ab82014-09-19 03:26:39 -0700244 plan.Exclude(r'android\.hardware$')
245 plan.Exclude(r'android\.media$')
246 plan.Exclude(r'android\.mediastress$')
247 for package, test_list in flaky_tests.iteritems():
248 plan.ExcludeTests(package, test_list)
249 self.__WritePlan(plan, 'CTS-staging')
250
Unsuk Jung20a389e2014-09-26 15:21:59 -0700251 plan = tools.TestPlan(packages)
252 plan.Exclude('.*')
253 plan.Include(r'android\.core\.tests\.libcore\.')
254 plan.Include(r'android\.jdwp')
255 self.__WritePlan(plan, 'CTS-ART')
256
257 plan = tools.TestPlan(packages)
258 plan.Exclude('.*')
259 plan.Include(r'com\.drawelements\.')
260 self.__WritePlan(plan, 'CTS-DEQP')
261
262 plan = tools.TestPlan(packages)
263 plan.Exclude('.*')
264 plan.Include(r'android\.webgl')
265 self.__WritePlan(plan, 'CTS-webview')
266
267
Unsuk Jung8398ab82014-09-19 03:26:39 -0700268def BuildAospMediumSizeTestList():
269 """ Construct a defaultdic that lists package names of medium tests
270 already published to aosp. """
271 return {
272 'android.app' : [],
273 'android.core.tests.libcore.package.libcore' : [],
274 'android.core.tests.libcore.package.org' : [],
275 'android.core.vm-tests-tf' : [],
276 'android.dpi' : [],
277 'android.host.security' : [],
278 'android.net' : [],
279 'android.os' : [],
280 'android.security' : [],
281 'android.telephony' : [],
282 'android.webkit' : [],
283 'android.widget' : [],
284 'com.android.cts.browserbench' : []}
285
286def BuildAospSmallSizeTestList():
287 """ Construct a defaultdict that lists packages names of small tests
288 already published to aosp. """
289 return {
290 'android.aadb' : [],
291 'android.acceleration' : [],
292 'android.accessibility' : [],
293 'android.accessibilityservice' : [],
294 'android.accounts' : [],
295 'android.admin' : [],
296 'android.animation' : [],
297 'android.bionic' : [],
298 'android.bluetooth' : [],
299 'android.calendarcommon' : [],
300 'android.content' : [],
301 'android.core.tests.libcore.package.com' : [],
302 'android.core.tests.libcore.package.conscrypt' : [],
303 'android.core.tests.libcore.package.dalvik' : [],
304 'android.core.tests.libcore.package.sun' : [],
305 'android.core.tests.libcore.package.tests' : [],
306 'android.database' : [],
307 'android.dreams' : [],
308 'android.drm' : [],
309 'android.effect' : [],
310 'android.gesture' : [],
311 'android.graphics' : [],
312 'android.graphics2' : [],
313 'android.jni' : [],
314 'android.keystore' : [],
315 'android.location' : [],
316 'android.nativemedia.sl' : [],
317 'android.nativemedia.xa' : [],
318 'android.nativeopengl' : [],
319 'android.ndef' : [],
320 'android.opengl' : [],
321 'android.openglperf' : [],
322 'android.permission' : [],
323 'android.permission2' : [],
324 'android.preference' : [],
325 'android.preference2' : [],
326 'android.provider' : [],
327 'android.renderscript' : [],
328 'android.rscpp' : [],
329 'android.rsg' : [],
330 'android.sax' : [],
331 'android.speech' : [],
332 'android.tests.appsecurity' : [],
333 'android.text' : [],
334 'android.textureview' : [],
335 'android.theme' : [],
336 'android.usb' : [],
337 'android.util' : [],
338 'android.view' : [],
339 'com.android.cts.dram' : [],
340 'com.android.cts.filesystemperf' : [],
341 'com.android.cts.jank' : [],
342 'com.android.cts.opengl' : [],
343 'com.android.cts.simplecpu' : [],
344 'com.android.cts.ui' : [],
345 'com.android.cts.uihost' : [],
346 'com.android.cts.videoperf' : [],
347 'zzz.android.monkey' : []}
Nicholas Sauer471c6012014-05-28 15:28:28 -0700348
Unsuk Jung58676122014-09-28 10:31:00 -0700349def BuildCtsVettedNewPackagesList():
350 """ Construct a defaultdict that maps package names that is vetted for L. """
351 return {
352 'android.appwidget' : [],
353 'android.core.tests.libcore.package.harmony_annotation' : [],
354 'android.core.tests.libcore.package.harmony_beans' : [],
355 'android.core.tests.libcore.package.harmony_java_io' : [],
356 'android.core.tests.libcore.package.harmony_java_lang' : [],
357 'android.core.tests.libcore.package.harmony_java_math' : [],
358 'android.core.tests.libcore.package.harmony_java_net' : [],
359 'android.core.tests.libcore.package.harmony_java_nio' : [],
360 'android.core.tests.libcore.package.harmony_java_util' : [],
361 'android.core.tests.libcore.package.harmony_javax_security' : [],
362 'android.core.tests.libcore.package.harmony_logging' : [],
363 'android.core.tests.libcore.package.harmony_prefs' : [],
364 'android.core.tests.libcore.package.harmony_sql' : [],
365 'android.core.tests.libcore.package.jsr166' : [],
366 'android.core.tests.libcore.package.okhttp' : [],
367 'android.display' : [],
368 'android.host.theme' : [],
369 'android.jdwp' : [],
370 'android.location2' : [],
371 'android.print' : [],
372 'android.renderscriptlegacy' : [],
373 'android.tests.sigtest' : [],
374 'android.tv' : [],
375 'android.uiautomation' : [],
376 'android.uirendering' : [],
377 'android.webgl' : []}
378
Nicholas Sauer471c6012014-05-28 15:28:28 -0700379def BuildCtsFlakyTestList():
380 """ Construct a defaultdict that maps package name to a list of tests
381 that are known to be flaky. """
382 return {
383 'android.app' : [
384 'cts.ActivityManagerTest#testIsRunningInTestHarness',
385 'cts.AlertDialogTest#testAlertDialogCancelable',
386 'cts.ExpandableListActivityTest#testCallback',],
Unsuk Jung1d729242014-09-08 09:23:03 -0700387 'android.dpi' : [
388 'cts.DefaultManifestAttributesSdkTest#testPackageHasExpectedSdkVersion',],
Nicholas Sauer471c6012014-05-28 15:28:28 -0700389 'android.hardware' : [
390 'camera2.cts.CameraDeviceTest#testCameraDeviceRepeatingRequest',
391 'camera2.cts.ImageReaderTest#testImageReaderFromCameraJpeg',
392 'cts.CameraTest#testImmediateZoom',
393 'cts.CameraTest#testPreviewCallback',
394 'cts.CameraTest#testSmoothZoom',
395 'cts.CameraTest#testVideoSnapshot',
396 'cts.CameraGLTest#testCameraToSurfaceTextureMetadata',
397 'cts.CameraGLTest#testSetPreviewTextureBothCallbacks',
398 'cts.CameraGLTest#testSetPreviewTexturePreviewCallback',],
399 'android.media' : [
400 'cts.DecoderTest#testCodecResetsH264WithSurface',
401 'cts.StreamingMediaPlayerTest#testHLS',],
402 'android.mediastress' : [
403 'cts.NativeMediaTest#test480pPlay',],
404 'android.net' : [
405 'cts.ConnectivityManagerTest#testStartUsingNetworkFeature_enableHipri',
406 'cts.DnsTest#testDnsWorks',
407 'cts.SSLCertificateSocketFactoryTest#testCreateSocket',
408 'cts.SSLCertificateSocketFactoryTest#test_createSocket_bind',
409 'cts.SSLCertificateSocketFactoryTest#test_createSocket_simple',
410 'cts.SSLCertificateSocketFactoryTest#test_createSocket_wrapping',
411 'cts.TrafficStatsTest#testTrafficStatsForLocalhost',
412 'wifi.cts.NsdManagerTest#testAndroidTestCaseSetupProperly',
413 'wifi.cts.ScanResultTest#testAndroidTestCaseSetupProperly',
414 'wifi.cts.ScanResultTest#testScanResultTimeStamp',],
Unsuk Jung1d729242014-09-08 09:23:03 -0700415 'android.os' : [
416 'cts.BuildVersionTest#testReleaseVersion',
417 'cts.BuildTest#testIsSecureUserBuild',],
Nicholas Sauer471c6012014-05-28 15:28:28 -0700418 'android.security' : [
419 'cts.BannedFilesTest#testNoSu',
420 'cts.BannedFilesTest#testNoSuInPath',
421 'cts.ListeningPortsTest#testNoRemotelyAccessibleListeningUdp6Ports',
422 'cts.ListeningPortsTest#testNoRemotelyAccessibleListeningUdpPorts',
423 'cts.PackageSignatureTest#testPackageSignatures',],
424 'android.webkit' : [
425 'cts.WebViewClientTest#testDoUpdateVisitedHistory',
426 'cts.WebViewClientTest#testLoadPage',
427 'cts.WebViewClientTest#testOnFormResubmission',
428 'cts.WebViewClientTest#testOnReceivedError',
429 'cts.WebViewClientTest#testOnReceivedHttpAuthRequest',
430 'cts.WebViewClientTest#testOnScaleChanged',
431 'cts.WebViewClientTest#testOnUnhandledKeyEvent',
432 'cts.WebViewTest#testSetInitialScale',]}
Unsuk Jung2a692d12013-09-29 20:57:32 -0700433
Brian Muramatsu9157e0a2011-04-05 18:06:15 -0700434def LogGenerateDescription(name):
435 print 'Generating test description for package %s' % name
436
437def GenerateSignatureCheckDescription(test_repository):
438 """Generate the test description for the signature check."""
439 LogGenerateDescription('android.tests.sigtest')
440 package = tools.TestPackage('SignatureTest', 'android.tests.sigtest')
441 package.AddAttribute('appNameSpace', 'android.tests.sigtest')
442 package.AddAttribute('signatureCheck', 'true')
443 package.AddAttribute('runner', '.InstrumentationRunner')
Stuart Scottc09a2e02013-11-15 13:03:29 -0800444 package.AddTest('android.tests.sigtest.SignatureTest.testSignature')
Brian Muramatsu9157e0a2011-04-05 18:06:15 -0700445 description = open(os.path.join(test_repository, 'SignatureTest.xml'), 'w')
446 package.WriteDescription(description)
447 description.close()
448
Phil Dubach0d6ef062009-08-12 18:13:16 -0700449if __name__ == '__main__':
450 builder = CtsBuilder(sys.argv)
Keun young Parkd93d0d12013-01-10 14:11:35 -0800451 result = builder.GenerateTestDescriptions()
452 if result != 0:
453 sys.exit(result)
Phil Dubach0d6ef062009-08-12 18:13:16 -0700454 builder.GenerateTestPlans()
Keun young Park3769d332012-08-29 10:16:37 -0700455