[PATCH] D140586: update_any_test_checks.py: run from any dir
Nick Desaulniers via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 22 14:23:16 PST 2022
nickdesaulniers created this revision.
Herald added a project: All.
nickdesaulniers requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Allow running llvm/utils/update_any_test_checks.py from working
directories other llvm/utils/.
Fixes:
$ ./llvm/utils/update_any_test_checks.py path/to/foo.ll
utils/update_llc_test_checks.py: not found (used in path/to/foo.ll)
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D140586
Files:
llvm/utils/update_any_test_checks.py
Index: llvm/utils/update_any_test_checks.py
===================================================================
--- llvm/utils/update_any_test_checks.py
+++ llvm/utils/update_any_test_checks.py
@@ -48,11 +48,11 @@
parser.add_argument('tests', nargs='+')
config = parser.parse_args()
- script_name = os.path.basename(__file__)
if config.utc_dir:
utc_search_path = config.utc_dir[:]
else:
utc_search_path = []
+ script_name = os.path.abspath(__file__)
utc_search_path.append(os.path.join(os.path.dirname(script_name),
os.path.pardir))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140586.484964.patch
Type: text/x-patch
Size: 603 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221222/77c3456f/attachment.bin>
More information about the llvm-commits
mailing list