Lines Matching refs:job
253 def report_skip(job):
254 sys.stderr.write('%sSkipping: %s' % (TERM_YELLOW, job.name))
255 if job.skip:
256 sys.stderr.write(' (%s)' % job.skip)
264 def create_binary(job, options):
265 build_args = job.build_args[:]
275 build_dir_path = os.path.join(options.outdir, job.name)
320 for job in jobs:
321 ret_build, build_dir_path = create_binary(job, options)
323 yield job, ret_build, None
343 yield job, ret_build, test_cmd
359 for job in DEBUGGER_TEST_OPTIONS:
360 ret_build, build_dir_path = create_binary(job, options)
378 if job.test_args:
379 test_cmd.extend(job.test_args)
387 for job, ret_build, test_cmd in iterate_test_runner_jobs(JERRY_TESTS_OPTIONS, options):
399 if '--profile=es2015-subset' in job.build_args:
410 if job.test_args:
411 test_cmd.extend(job.test_args)
419 for job, ret_build, test_cmd in iterate_test_runner_jobs(JERRY_TEST_SUITE_OPTIONS, options):
425 if '--profile=minimal' in job.build_args:
431 if '--profile=es2015-subset' in job.build_args:
445 if job.test_args:
446 test_cmd.extend(job.test_args)
461 for job in jobs:
462 ret_build, build_dir_path = create_binary(job, options)
473 if '--profile=es2015-subset' in job.build_args:
478 if job.test_args:
479 test_cmd.extend(job.test_args)
487 for job in JERRY_UNITTESTS_OPTIONS:
488 if job.skip:
489 report_skip(job)
491 ret_build, build_dir_path = create_binary(job, options)
497 if "--debug" in job.build_args:
515 for job in JERRY_BUILDOPTIONS:
516 if job.skip:
517 report_skip(job)
520 ret, _ = create_binary(job, options)