Cygwin: testsuite: Drop Adminstrator privileges while running tests

Test access05 and symlink03 expect operations to fail which succeed when
we have Adminstrator privileges.

There's perhaps a bit of incoherency here: some XFAILed tests expect to
run as root (so maybe we need the ability to selectively cygdrop?).

Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
This commit is contained in:
Jon Turney 2023-07-11 15:40:09 +01:00
parent 10e50f9617
commit fee0c04e30
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
3 changed files with 5 additions and 3 deletions

View File

@ -73,6 +73,7 @@ jobs:
automake, automake,
busybox, busybox,
cocom, cocom,
cygutils-extra,
dblatex, dblatex,
dejagnu, dejagnu,
docbook-xml45, docbook-xml45,

View File

@ -697,8 +697,9 @@ Building these programs can be disabled with the <literal>--without-cross-bootst
option to <literal>configure</literal>. option to <literal>configure</literal>.
</para> </para>
<!-- If you want to run the tests, <literal>dejagnu</literal> and <!-- If you want to run the tests, <literal>dejagnu</literal>,
<literal>busybox</literal> are also required. --> <literal>busybox</literal> and <literal>cygutils-extra<literal> are also
required. -->
<para> <para>
Building the documentation also requires the <literal>dblatex</literal>, Building the documentation also requires the <literal>dblatex</literal>,

View File

@ -64,7 +64,7 @@ foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.c $srcdir/$subdir/*/*.{cc
} }
file mkdir $tmpdir/$tmpfile file mkdir $tmpdir/$tmpfile
set env(PATH) "$runtime_root:$env(PATH)" set env(PATH) "$runtime_root:$env(PATH)"
ws_spawn "$cygrun $exec $testdll_tmpdir/$tmpfile > $redirect_output" ws_spawn "cygdrop $cygrun $exec $testdll_tmpdir/$tmpfile > $redirect_output"
file delete -force $tmpdir/$tmpfile file delete -force $tmpdir/$tmpfile
set env(PATH) "$orig_path" set env(PATH) "$orig_path"
if { $rv } { if { $rv } {