Skip to content

Commit e59134e

Browse files
committed
loggin to list contents of lib
1 parent 316c059 commit e59134e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

build_tools/github_actions/test_executable_scripts/test_ocltst.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def setup_env(env):
2929
env["ROCM_PATH"] = str(ROCM_PATH)
3030
if platform.system() == "Linux":
3131
OCL_LIB_PATH = Path(THEROCK_BIN_DIR).parent / "lib"
32+
logging.info(f"++ contents of OCL_LIB_PATH={os.listdir(OCL_LIB_PATH)}")
3233
if "LD_LIBRARY_PATH" in env:
3334
env["LD_LIBRARY_PATH"] = f"{OCL_LIB_PATH}:{env['LD_LIBRARY_PATH']}"
3435
else:
@@ -40,6 +41,7 @@ def execute_tests(env):
4041
cmd = [
4142
"./ocltst", "-J", "-m", "liboclruntime.so", "-A", "oclruntime.exclude",
4243
]
44+
logging.info(f"++ contents of OCLTST_PATH={os.listdir(OCLTST_PATH)}")
4345
env["LD_LIBRARY_PATH"] = f"{env['LD_LIBRARY_PATH']}:{OCLTST_PATH}"
4446
logging.info(f"++ Setting LD_LIBRARY_PATH={env['LD_LIBRARY_PATH']}")
4547
shell_var = False

0 commit comments

Comments
 (0)