diff options
Diffstat (limited to 'llvm/utils/update_mir_test_checks.py')
-rwxr-xr-x | llvm/utils/update_mir_test_checks.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/utils/update_mir_test_checks.py b/llvm/utils/update_mir_test_checks.py index cf7528f5760..b42a38bd55a 100755 --- a/llvm/utils/update_mir_test_checks.py +++ b/llvm/utils/update_mir_test_checks.py @@ -21,6 +21,7 @@ from __future__ import print_function import argparse import collections +import glob import os import re import subprocess @@ -426,7 +427,8 @@ def main(): parser.add_argument('tests', nargs='+') args = parser.parse_args() - for test in args.tests: + test_paths = [test for pattern in args.tests for test in glob.glob(pattern)] + for test in test_paths: try: update_test_file(args.llc, test, args.remove_common_prefixes, verbose=args.verbose) |