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.py88 build_command = target.get('build').format( variable
91 sys.stdout.write(str(build_command) + '\n')
93 if subprocess.call(build_command.split()):
98 build_command = 'build/soong/soong_ui.bash --make-mode' variable
99 build_command += ' D8='
100 build_command += ' -j' + str(n_threads)
101 build_command += ' ' + target.get('make')
103 build_command += ' dist'
104 sys.stdout.write(str(build_command) + '\n')
106 if subprocess.call(build_command.split()):
Dtestrunner.py1219 build_command = env.ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode'
1220 build_command += ' D8='
1222 build_command += ' dist'
1223 build_command += ' ' + ' '.join(build_targets)
1224 print_text('Build command: %s\n' % build_command)
1225 if subprocess.call(build_command.split()):
/art/
Dtest.py66 build_command = ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode' variable
67 build_command += ' -j' + str(options.n_threads)
68 build_command += ' ' + build_target
69 print(build_command)
70 if subprocess.call(build_command.split(), cwd=ANDROID_BUILD_TOP):