aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/pkg-configure.testscript8
-rw-r--r--tests/pkg-purge.testscript8
2 files changed, 14 insertions, 2 deletions
diff --git a/tests/pkg-configure.testscript b/tests/pkg-configure.testscript
index ab712c0..00963dc 100644
--- a/tests/pkg-configure.testscript
+++ b/tests/pkg-configure.testscript
@@ -76,6 +76,12 @@ pkg_unpack += -d cfg 2>!
rep_add += -d cfg 2>!
rep_fetch += -d cfg --auth all 2>!
+posix = ($cxx.target.class != 'windows')
+
++if $posix
+ id -u | set uid
+end
+
: no-name
:
$clone_cfg;
@@ -198,7 +204,7 @@ $* libhello libhello 2>>EOE != 0
: broken
:
-if ($cxx.target.class != 'windows')
+if ($posix && "$uid" != '0')
{
: disfigure-failed
:
diff --git a/tests/pkg-purge.testscript b/tests/pkg-purge.testscript
index 961ae19..7b8f5c0 100644
--- a/tests/pkg-purge.testscript
+++ b/tests/pkg-purge.testscript
@@ -18,6 +18,12 @@ pkg_fetch += -d cfg 2>!
pkg_unpack += -d cfg 2>!
pkg_status += -d cfg
+posix = ($cxx.target.class != 'windows')
+
++if $posix
+ id -u | set uid
+end
+
: no-name
:
$clone_cfg;
@@ -138,7 +144,7 @@ $* libfoo 2>>/EOE != 0
: broken
:
-if ($cxx.target.class != 'windows')
+if ($posix && "$uid" != '0')
{
$clone_cfg;
cp --no-cleanup $src/libfoo-1.0.0.tar.gz cfg/;