Skip to content

Commit

Permalink
DEBUGGING
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderlaw committed Jan 17, 2025
1 parent 1c99ad3 commit 1cca106
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/run-python-test-set/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,13 @@ runs:
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
export UBSAN_OPTIONS=abort_on_error=1:print_stacktrace=1
# DEBUGGING
ls -l /tmp/neon/pg_install/v16/
ls -l /tmp/neon/pg_install/v16/bin/
ls -l /tmp/neon/pg_install/v16/lib/
ldd /tmp/neon/pg_install/v16/bin/pg_isready
# DEBUGGING
if [ "${BUILD_TYPE}" = "remote" ]; then
export REMOTE_ENV=1
fi
Expand Down
1 change: 1 addition & 0 deletions test_runner/fixtures/neon_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def raw_cli(
if val:
env_vars[var] = val

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 "-"))
# Intercept CalledProcessError and print more info
try:
res = subprocess.run(
Expand Down

0 comments on commit 1cca106

Please sign in to comment.