add stderr redirect for executing tests

Thu, 02 Oct 2025 21:10:52 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 02 Oct 2025 21:10:52 +0200
changeset 147
410345192a48
parent 146
d27511c87b70
child 148
3b11e97b618e

add stderr redirect for executing tests

src/main/resources/make/configure.vm file | annotate | diff | comparison | revisions
test/configure2 file | annotate | diff | comparison | revisions
test/make/configure.vm file | annotate | diff | comparison | revisions
--- a/src/main/resources/make/configure.vm	Thu May 29 21:56:46 2025 +0200
+++ b/src/main/resources/make/configure.vm	Thu Oct 02 21:10:52 2025 +0200
@@ -400,7 +400,7 @@
         fi
         #end
         #foreach( $test in $sub.tests )
-        if $test > /dev/null ; then
+        if $test > /dev/null 2>&1 ; then
             :
         else
             break
--- a/test/configure2	Thu May 29 21:56:46 2025 +0200
+++ b/test/configure2	Thu Oct 02 21:10:52 2025 +0200
@@ -337,7 +337,7 @@
     # dependency qt4
     while true
     do
-        if which qmake-qt4 > /dev/null ; then
+        if which qmake-qt4 > /dev/null 2>&1 ; then
             :
         else
             break
--- a/test/make/configure.vm	Thu May 29 21:56:46 2025 +0200
+++ b/test/make/configure.vm	Thu Oct 02 21:10:52 2025 +0200
@@ -400,7 +400,7 @@
         fi
         #end
         #foreach( $test in $sub.tests )
-        if $test > /dev/null ; then
+        if $test > /dev/null 2>&1 ; then
             :
         else
             break

mercurial