forked from lix-project/lix
bfb9eb87fe
- Try not to put cryptic "99" in many places Factor out `exit 99` into `skipTest` function - Alows make sure skipping a test is done with a reason `skipTest` takes a mandatory argument - Separate pure conditionals vs side-effectful test skipping. "require daemon" already had this, but "sandbox support" did not.
10 lines
245 B
Bash
10 lines
245 B
Bash
source common.sh
|
|
|
|
if [[ $BUILD_SHARED_LIBS != 1 ]]; then
|
|
skipTest "Plugins are not supported"
|
|
fi
|
|
|
|
res=$(nix --option setting-set true --option plugin-files $PWD/plugins/libplugintest* eval --expr builtins.anotherNull)
|
|
|
|
[ "$res"x = "nullx" ]
|