This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2.
View the commit online.
commit efd0bccb929d7acc8d38e4ba0d58e579188f22d3
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Sun Jul 2 18:19:34 2023 +0200
test: Bypass wrappers when running tests
---
test/Makefile.am | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/test/Makefile.am b/test/Makefile.am
index 876ed66..c56a1f1 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -75,7 +75,8 @@ test_rotate_LDADD = $(LIBS)
TESTS_RUN = $(addprefix run-, $(GTESTS))
- TEST_ENV = IMLIB2_LOADER_PATH=$(top_builddir)/src/modules/loaders/.libs
+ TEST_ENV = LD_LIBRARY_PATH=$(top_builddir)/src/lib/.libs
+ TEST_ENV += IMLIB2_LOADER_PATH=$(top_builddir)/src/modules/loaders/.libs
VG_PROG = valgrind --leak-check=full
@@ -84,11 +85,11 @@ all-local: run
.PHONY: run $(TESTS_RUN)
run: $(TESTS_RUN)
$(TESTS_RUN): run-%: %
- $(TEST_ENV) ./$* $(RUN_OPTS)
+ $(TEST_ENV) ./.libs/$* $(RUN_OPTS)
TESTS_RUN_VG = $(addprefix run-vg-, $(GTESTS))
.PHONY: run-vg $(TESTS_RUN_VG)
run-vg: $(TESTS_RUN_VG)
$(TESTS_RUN_VG): run-vg-%: %
- $(TEST_ENV) $(VG_PROG) ./$* $(RUN_OPTS)
+ $(TEST_ENV) $(VG_PROG) ./.libs/$* $(RUN_OPTS)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.