From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id CECE1386F406; Sun, 8 Nov 2020 15:21:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CECE1386F406 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jon TURNEY To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: Check exit code of a test, rather than stdout X-Act-Checkin: newlib-cygwin X-Git-Author: Jon Turney X-Git-Refname: refs/heads/master X-Git-Oldrev: fb967562b02e0bed196d3c149191b174ed90e674 X-Git-Newrev: 0c448d53e10b1ab8f483f704f9ba07bc143fb788 Message-Id: <20201108152143.CECE1386F406@sourceware.org> Date: Sun, 8 Nov 2020 15:21:43 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Nov 2020 15:21:43 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=0c448d53e10b1ab8f483f704f9ba07bc143fb788 commit 0c448d53e10b1ab8f483f704f9ba07bc143fb788 Author: Jon Turney Date: Sat Oct 17 00:36:26 2020 +0100 Cygwin: Check exit code of a test, rather than stdout In winsup.exp, don't consider a command failed if it produced any output (e.g. if the compiler produced warnings). Instead check the exit code. Diff: --- winsup/testsuite/winsup.api/winsup.exp | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/winsup/testsuite/winsup.api/winsup.exp b/winsup/testsuite/winsup.api/winsup.exp index 639096267..1550b9445 100644 --- a/winsup/testsuite/winsup.api/winsup.exp +++ b/winsup/testsuite/winsup.api/winsup.exp @@ -20,11 +20,19 @@ if { [info exists env(CYGWIN_TESTSUITE_TESTS)] } { set test_filter "$env(CYGWIN_TESTSUITE_TESTS)" } -proc ws_spawn {cmd args} { +proc ws_spawn {cmd} { global rv verbose "running $cmd\n" - catch "exec $cmd" rv - verbose send "catchCode = $rv\n" + try { + set msg [exec -ignorestderr {*}$cmd "2>@1"] + set rv 0 + } trap CHILDSTATUS {results options} { + verbose "returned $::errorCode\n" + set msg $results + set rv 1 + } + verbose -log "$msg" + return $rv } verbose "Filter: $test_filter" @@ -52,8 +60,7 @@ foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.c $srcdir/$subdir/*/*.{cc source "$srcdir/$subdir/$basename.exp" } else { ws_spawn "$CC -nodefaultlibs -mwin32 $CFLAGS $src $add_includes $add_libs $runtime_root/binmode.o -lgcc $runtime_root/libcygwin0.a -lkernel32 -luser32 -o $base.exe" - if { $rv != "" } { - verbose -log "$rv" + if { $rv } { fail "$testcase (compile)" } else { if { $verbose } { @@ -62,8 +69,7 @@ foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.c $srcdir/$subdir/*/*.{cc set redirect_output /dev/null } ws_spawn "$rootme/cygrun ./$base.exe > $redirect_output" - if { $rv != "" } { - verbose -log "$testcase: $rv" + if { $rv } { fail "$testcase (execute)" if { $xfail_expected } { catch { file delete "$base.exe" } err