[Libomptarget] Fix the NVPTX Libomptarget test
authorJoseph Huber <jhuber6@vols.utk.edu>
Thu, 2 Feb 2023 15:45:19 +0000 (09:45 -0600)
committerJoseph Huber <jhuber6@vols.utk.edu>
Thu, 2 Feb 2023 15:46:10 +0000 (09:46 -0600)
Summary:
This was broken, we weren't adding these for the NVPTX tests.

openmp/libomptarget/test/lit.cfg

index a76f582..08cd23c 100644 (file)
@@ -114,7 +114,7 @@ else: # Unices
     config.test_flags += " -Wl,-rpath," + config.llvm_lib_directory
     if config.cuda_libdir:
         config.test_flags += " -Wl,-rpath," + config.cuda_libdir
-    if config.libomptarget_current_target.startswith('amdgcn'):
+    if config.libomptarget_current_target.startswith('nvptx'):
         config.test_flags += " --libomptarget-nvptx-bc-path=" + config.library_dir
     if config.libomptarget_current_target.endswith('-LTO'):
         config.test_flags += " -foffload-lto"