Lines Matching +full:xvfb +full:- +full:run
3 # Use of this source code is governed by a BSD-style license that can be
5 """Runs an isolated non-Telemetry ANGLE test.
9 --isolated-script-test-output=[FILENAME]
15 --isolated-script-test-filter=[TEST_NAMES]
17 is a double-colon-separated ("::") list of test names, to run just that subset
19 --gtest_filter argument.
22 followed by a subsequent non-python executable. For a similar script see
34 # Add //src/testing into sys.path for importing xvfb and test_env, and
46 import xvfb
63 parser.add_argument('--isolated-script-test-output', type=str)
64 parser.add_argument('--isolated-script-test-filter', type=str)
65 parser.add_argument('--xvfb', help='Start xvfb.', action='store_true')
69 parser.add_argument('--isolated-script-test-perf-output', type=str)
76 extra_flags += ['--shard-count=' + env['GTEST_TOTAL_SHARDS']]
79 extra_flags += ['--shard-index=' + env['GTEST_SHARD_INDEX']]
82 extra_flags += ['--isolated-outdir=' + env['ISOLATED_OUTDIR']]
86 # time; doing so is harmless on non-Linux platforms and is needed
94 extra_flags.append('--isolated-script-test-output=%s' %
99 extra_flags.append('--gtest_filter=' + ':'.join(filter_list))
109 if args.xvfb:
110 rc = xvfb.run_executable(cmd, env, stdoutfile=tempfile_path)
131 'run': None,