Lines Matching +full:- +full:- +full:pylib
3 # Use of this source code is governed by a BSD-style license that can be
6 """gyptest.py -- test runner for GYP tests."""
35 parser.add_argument("-a", "--all", action="store_true", help="run all tests")
36 parser.add_argument("-C", "--chdir", action="store", help="change to directory")
38 "-f",
39 "--format",
45 "-G",
46 "--gyp_option",
49 help="Add -G options to the gyp command line",
52 "-l", "--list", action="store_true", help="list available tests and exit"
55 "-n",
56 "--no-exec",
61 "--path", action="append", default=[], help="additional $PATH directory"
64 "-q",
65 "--quiet",
70 "-v",
71 "--verbose",
88 sys.stderr.write("Specify -a to get all tests.\n")
128 # TODO: Re-enable xcode-ninja.
130 # 'darwin': ['make', 'ninja', 'xcode', 'xcode-ninja'],
136 gyp_options += ["-G", option]
159 sys.path.append(os.path.abspath("pylib"))
197 self.took = time.time() - run_start
213 took = time.time() - start
239 if index == -1:
242 self.hpos = len(msg) - index