about summary refs log tree commit diff
path: root/pkgs/test/cc-wrapper
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-05-05 23:55:24 +0300
committerArtturin <Artturin@artturin.com>2023-05-05 23:55:24 +0300
commit1d9f58c7a41b71fbc37855e693ad574a552301a6 (patch)
tree75f23427b95a6b2cb35d66a5ef1f394a478c1f20 /pkgs/test/cc-wrapper
parentc4a06db832106d195bfccf1c937a72ff41be80b5 (diff)
tests.cc-multilib: put error on separate line
Diffstat (limited to 'pkgs/test/cc-wrapper')
-rw-r--r--pkgs/test/cc-wrapper/multilib.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/test/cc-wrapper/multilib.nix b/pkgs/test/cc-wrapper/multilib.nix
index 828ad67f6c872..a26880681f22b 100644
--- a/pkgs/test/cc-wrapper/multilib.nix
+++ b/pkgs/test/cc-wrapper/multilib.nix
@@ -10,23 +10,23 @@ stdenv.mkDerivation {
     NIX_DEBUG=1 $CC -v
     NIX_DEBUG=1 $CXX -v
 
-    printf "checking whether compiler builds valid C binaries... " >&2
+    printf "checking whether compiler builds valid C binaries...\n " >&2
     $CC -o cc-check ${./cc-main.c}
     ./cc-check
 
-    printf "checking whether compiler builds valid 32bit C binaries... " >&2
+    printf "checking whether compiler builds valid 32bit C binaries...\n " >&2
     $CC -m32 -o c32-check ${./cc-main.c}
     ./c32-check
 
-    printf "checking whether compiler builds valid 64bit C binaries... " >&2
+    printf "checking whether compiler builds valid 64bit C binaries...\n " >&2
     $CC -m64 -o c64-check ${./cc-main.c}
     ./c64-check
 
-    printf "checking whether compiler builds valid 32bit C++ binaries... " >&2
+    printf "checking whether compiler builds valid 32bit C++ binaries...\n " >&2
     $CXX -m32 -o cxx32-check ${./cxx-main.cc}
     ./cxx32-check
 
-    printf "checking whether compiler builds valid 64bit C++ binaries... " >&2
+    printf "checking whether compiler builds valid 64bit C++ binaries...\n " >&2
     $CXX -m64 -o cxx64-check ${./cxx-main.cc}
     ./cxx64-check