1
0
Fork 0
dpkg/debian/tests/test-func-root
Daniel Baumann 2a3fea02e3
Adding debian version 1.22.20.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-20 21:21:01 +02:00

13 lines
273 B
Bash

#!/bin/sh
set -e
if [ "$(id -u)" != '0' ]; then
# Fail, we declared needing root as a restriction.
exit 1
fi
export DPKG_TESTSUITE_OPTIONS="debug as-root"
export DPKG_ADMINDIR="$AUTOPKGTEST_TMP/db"
eatmydata make -C tests installtest DPKG_ADMINDIR="$DPKG_ADMINDIR"