Add rpath check in test Makefile

pull/5661/head
Yanwen Jin 2022-02-08 11:37:07 -08:00
parent ef2221affa
commit aaceada367
2 changed files with 2 additions and 4 deletions

View File

@ -26,8 +26,6 @@ install-columnar:
$(MAKE) -C src/backend/columnar install
install-extension: extension install-columnar
$(MAKE) -C src/backend/distributed/ install
ldd /usr/lib/postgresql/13/lib/citus.so
readelf -d /usr/lib/postgresql/13/lib/citus.so
install-headers: extension
$(MKDIR_P) '$(DESTDIR)$(includedir_server)/distributed/'
# generated headers are located in the build directory
@ -47,8 +45,6 @@ install-downgrades:
$(MAKE) -C src/backend/distributed/ install-downgrades
install-all: install-headers
$(MAKE) -C src/backend/distributed/ install-all
ldd /usr/lib/postgresql/13/lib/citus.so
readelf -d /usr/lib/postgresql/13/lib/citus.so
clean: clean-extension
# apply or check style

View File

@ -192,6 +192,8 @@ check-operations: all
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/operations_schedule $(EXTRA_TESTS)
check-columnar:
ldd /usr/lib/postgresql/13/lib/citus.so
readelf -d /usr/lib/postgresql/13/lib/citus.so
$(pg_regress_multi_check) --load-extension=citus \
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/columnar_schedule $(EXTRA_TESTS)