mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
[utils] update_test_checks.py: allow opt-8, opt-9
Allow using Debian's opt-8, opt-9 with update_test_checks.py Patch by Shawn Landden! Differential Revision: https://reviews.llvm.org/D61148 llvm-svn: 360536
This commit is contained in:
parent
c9d82868e4
commit
60386c1c20
@ -68,9 +68,10 @@ def main():
|
|||||||
autogenerated_note = (ADVERT + 'utils/' + os.path.basename(__file__))
|
autogenerated_note = (ADVERT + 'utils/' + os.path.basename(__file__))
|
||||||
|
|
||||||
opt_basename = os.path.basename(args.opt_binary)
|
opt_basename = os.path.basename(args.opt_binary)
|
||||||
if (opt_basename != "opt"):
|
if not re.match(r'^opt(-\d+)?$', opt_basename):
|
||||||
print('ERROR: Unexpected opt name: ' + opt_basename, file=sys.stderr)
|
print('ERROR: Unexpected opt name: ' + opt_basename, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
opt_basename = 'opt'
|
||||||
|
|
||||||
test_paths = [test for pattern in args.tests for test in glob.glob(pattern)]
|
test_paths = [test for pattern in args.tests for test in glob.glob(pattern)]
|
||||||
for test in test_paths:
|
for test in test_paths:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user