From bb6129a77e4d63d666053664c91a89feeb357f79 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Mon, 22 May 2023 13:55:23 +0200 Subject: [PATCH] Reduce ompss2 test verbosity --- test/compilers/ompss2.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/test/compilers/ompss2.nix b/test/compilers/ompss2.nix index 7041f37..2246201 100644 --- a/test/compilers/ompss2.nix +++ b/test/compilers/ompss2.nix @@ -23,19 +23,22 @@ stdenv.mkDerivation rec { dontUnpack = true; dontConfigure = true; hardeningDisable = [ "all" ]; - NIX_DEBUG = 1; + #NIX_DEBUG = 1; buildInputs = [ strace gdb ]; # NODES requires access to /sys/devices to request NUMA information. It will # fail to run otherwise, so we disable the sandbox for this test. __noChroot = true; buildPhase = '' - set -x - echo CC=$CC - $CC -v + #set -x + #$CC -v cp ${task_c} task.c + + echo CC=$CC + echo NANOS6_HOME=$NANOS6_HOME + echo NODES_HOME=$NODES_HOME cat task.c - $CC -v -fompss-2 task.c -o task + $CC -fompss-2 task.c -o task #strace -ff -e trace=open,openat -s9999999 ./task LD_DEBUG=libs ./task #gdb -batch -ex "run" -ex "bt" ./task