From 7cb3b50737888d9e0ef009e12604bbe3452258cb Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Mon, 6 Oct 2025 11:52:04 +0200 Subject: [PATCH] run-test: add $RUNTESTFLAGS --- extras/build-tests/nix/run-tests | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extras/build-tests/nix/run-tests b/extras/build-tests/nix/run-tests index 844798b67..f43b6ccaa 100755 --- a/extras/build-tests/nix/run-tests +++ b/extras/build-tests/nix/run-tests @@ -25,11 +25,11 @@ fi # Run the test framework, testing both services: if [ "$NOSERVICES" = 1 ]; then - ./run -services none || exit 1 + ./run -services none $RUNTESTFLAGS || exit 1 else # Linux tests both with anope and atheme services: - ./run -services anope || exit 1 - ./run -services atheme || exit 1 + ./run -services anope $RUNTESTFLAGS || exit 1 + ./run -services atheme $RUNTESTFLAGS || exit 1 fi # Database writing/reading tests