From b18039a4bf2f7d544206a60897c4818bd1dd36ec Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Tue, 21 Jun 2022 15:02:37 +0200 Subject: [PATCH] Fix verbose output on failed tests --- nix/old-glibc.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/old-glibc.nix b/nix/old-glibc.nix index ac9517a..361d907 100644 --- a/nix/old-glibc.nix +++ b/nix/old-glibc.nix @@ -24,7 +24,9 @@ in cmakeBuildType = "Debug"; cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; buildFlags = [ "VERBOSE=1" ]; - checkFlags = [ "CTEST_OUTPUT_ON_FAILURE=1" "ARGS=-V" ]; + preCheck = '' + export CTEST_OUTPUT_ON_FAILURE=1 + ''; dontStrip = true; doCheck = true; checkTarget = "test";