From 542dffa4a68aec026ae47b462683327300c5c355 Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Thu, 8 Apr 2021 20:33:51 +0300 Subject: [PATCH] Set LD_LIBRARY_PATH for tests --- integration_tests/tests/control_plane/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/integration_tests/tests/control_plane/mod.rs b/integration_tests/tests/control_plane/mod.rs index eab3f345af..5ace192ac0 100644 --- a/integration_tests/tests/control_plane/mod.rs +++ b/integration_tests/tests/control_plane/mod.rs @@ -178,6 +178,7 @@ impl PageServerNode { .arg("--skip-recovery") .env_clear() .env("PATH", PG_BIN_DIR.to_str().unwrap()) // path to postres-wal-redo binary + .env("LD_LIBRARY_PATH", PG_LIB_DIR.to_str().unwrap()) .status() .expect("failed to start pageserver");