Skip to content

Commit de26a92

Browse files
committed
DEBUGGING
1 parent 73e6604 commit de26a92

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/actions/run-python-test-set/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@ runs:
124124
export ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=0:abort_on_error=1:strict_string_checks=1:check_initialization_order=1:strict_init_order=1
125125
export UBSAN_OPTIONS=abort_on_error=1:print_stacktrace=1
126126
127+
# DEBUGGING
128+
ls -l /tmp/neon/pg_install/v16/
129+
ls -l /tmp/neon/pg_install/v16/bin/
130+
ls -l /tmp/neon/pg_install/v16/lib/
131+
ldd /tmp/neon/pg_install/v16/bin/pg_isready
132+
# DEBUGGING
133+
127134
if [ "${BUILD_TYPE}" = "remote" ]; then
128135
export REMOTE_ENV=1
129136
fi

test_runner/fixtures/neon_cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def raw_cli(
8181
if val:
8282
env_vars[var] = val
8383

84+
log.info("LD_LIBRARY_PATH: %s / %s" % (os.environ["LD_LIBRARY_PATH"] if "LD_LIBRARY_PATH" in os.environ else "-", env_vars["LD_LIBRARY_PATH"] if "LD_LIBRARY_PATH" in env_vars else "-"))
8485
# Intercept CalledProcessError and print more info
8586
try:
8687
res = subprocess.run(

0 commit comments

Comments
 (0)