From 0d85875c3a4284dabad79069758a9056898c42dc Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Mon, 11 Mar 2024 00:50:57 -0700 Subject: Allow dlopen of plugins to fail It happens with some frequency that plugins that might be unimportant to the evaluation at hand mismatch with the nix version, leading to spurious load failures. Let's make these non fatal. Change-Id: Iba10e951d171725ccf1a121bcd9be1e1d6ad69eb --- tests/functional/local.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/functional/local.mk') diff --git a/tests/functional/local.mk b/tests/functional/local.mk index af2a55e58..417c78509 100644 --- a/tests/functional/local.mk +++ b/tests/functional/local.mk @@ -141,7 +141,8 @@ endif $(d)/test-libstoreconsumer.sh.test $(d)/test-libstoreconsumer.sh.test-debug: \ $(buildprefix)$(d)/test-libstoreconsumer/test-libstoreconsumer $(d)/plugins.sh.test $(d)/plugins.sh.test-debug: \ - $(buildprefix)$(d)/plugins/libplugintest.$(SO_EXT) + $(buildprefix)$(d)/plugins/libplugintest.$(SO_EXT) \ + $(buildprefix)$(d)/plugins/libplugintestfail.$(SO_EXT) $(d)/test-repl-characterization.sh.test $(d)/test-repl-characterization.sh.test-debug: \ $(buildprefix)$(d)/repl_characterization/test-repl-characterization -- cgit v1.2.3