Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Look for PostgresNode.pm in the right path #3308

Merged
merged 1 commit into from Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion test/pg_prove.sh
Expand Up @@ -30,4 +30,9 @@ else
FINAL_TESTS=$PROVE_TESTS
fi

${PROVE} -I "${SRC_DIR}/src/test/perl" -I "${CM_SRC_DIR}/test/perl" $FINAL_TESTS
${PROVE} \
-I "${SRC_DIR}/src/test/perl" \
-I "${CM_SRC_DIR}/test/perl" \
-I "${PG_LIBDIR}/pgxs/src/test/perl" \
-I "${PG_LIBDIR}/postgresql/pgxs/src/test/perl" \
$FINAL_TESTS
1 change: 1 addition & 0 deletions tsl/test/CMakeLists.txt
Expand Up @@ -67,6 +67,7 @@ if (TAP_CHECKS)
PG_REGRESS=${PG_REGRESS}
SRC_DIR=${PG_SOURCE_DIR}
CM_SRC_DIR=${CMAKE_SOURCE_DIR}
PG_LIBDIR=${PG_LIBDIR}
${PRIMARY_TEST_DIR}/pg_prove.sh
USES_TERMINAL)
list(APPEND _install_checks provecheck)
Expand Down