Home
last modified time | relevance | path

Searched refs:build_command (Results 1 – 3 of 3) sorted by relevance

/art/test/testrunner/
Drun_build_test_target.py69 build_command = target.get('build').format( variable
72 sys.stdout.write(str(build_command) + '\n')
74 if subprocess.call(build_command.split()):
79 build_command = 'build/soong/soong_ui.bash --make-mode' variable
80 build_command += ' DX='
81 build_command += ' -j' + str(n_threads)
82 build_command += ' ' + target.get('make')
84 build_command += ' dist'
85 sys.stdout.write(str(build_command) + '\n')
87 if subprocess.call(build_command.split()):
Dtestrunner.py1120 build_command = env.ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode'
1121 build_command += ' DX='
1122 build_command += ' ' + build_targets
1123 if subprocess.call(build_command.split()):
/art/
Dtest.py65 build_command = 'm -j' + str(options.n_threads) + ' ' + build_target variable
66 print build_command
67 if subprocess.call(build_command.split(), cwd=ANDROID_BUILD_TOP):