From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id 8ECEA38582B7; Tue, 8 Aug 2023 13:16:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8ECEA38582B7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1691500573; bh=3NtwCwRHoc8zfMbmDjwg1I/KC3dg9N7TfemC2U2tomU=; h=From:To:Subject:Date:From; b=ysOnFl95A3kecQZjyAYKU6t0eGPsKO+rsK+01Jpd7EZwSLeoy0r86lbmOcIbSwvOs oHeDTg1wVoXdn711OHN+55sSlyxn2l6BZrpBIUARJ0EOzODMyjzQQMMibWQNWnH/A3 7vS0OeAsnvP+KSOC9SdlXtTpqLkUZAESEHzYkTcg= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jon Turney To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/main] Cygwin: testsuite: Fix cygload test X-Act-Checkin: newlib-cygwin X-Git-Author: Jon Turney X-Git-Refname: refs/heads/main X-Git-Oldrev: 718f37823dc8f5a738dcc8ee49e4e7b17671da56 X-Git-Newrev: edda3aeaf54ad6786031419f83513b1a6f756d97 Message-Id: <20230808131613.8ECEA38582B7@sourceware.org> Date: Tue, 8 Aug 2023 13:16:13 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Dedda3aeaf54= ad6786031419f83513b1a6f756d97 commit edda3aeaf54ad6786031419f83513b1a6f756d97 Author: Jon Turney Date: Sat Jul 22 20:54:49 2023 +0100 Cygwin: testsuite: Fix cygload test =20 Use cygrun to isolate the cygload test from the current DLL, which allows it to pass. Diff: --- winsup/testsuite/cygrun.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/testsuite/cygrun.sh b/winsup/testsuite/cygrun.sh index c82c1872b..bf1d5cc6b 100755 --- a/winsup/testsuite/cygrun.sh +++ b/winsup/testsuite/cygrun.sh @@ -11,7 +11,7 @@ export PATH=3D"$runtime_root:${PATH}" if [ "$1" =3D "./mingw/cygload" ] then windows_runtime_root=3D$(cygpath -m $runtime_root) - $exe -v -cygwin $windows_runtime_root/cygwin1.dll + $cygrun "$exe -v -cygwin $windows_runtime_root/cygwin1.dll" else cygdrop $cygrun $exe fi