update_any_test_checks.py: run from any dir
authorNick Desaulniers <ndesaulniers@google.com>
Mon, 9 Jan 2023 23:34:21 +0000 (15:34 -0800)
committerNick Desaulniers <ndesaulniers@google.com>
Mon, 9 Jan 2023 23:36:15 +0000 (15:36 -0800)
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)

Reviewed By: arichardson

Differential Revision: https://reviews.llvm.org/D140586

llvm/utils/update_any_test_checks.py

index e1c7a8f..33b6689 100755 (executable)
@@ -48,11 +48,11 @@ def main():
   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))