tests/installed: also run test-basic-c
Since we now have a subtest there that needs full xattr support. Closes: #1170 Approved by: cgwalters
This commit is contained in:
parent
a06bd82cd4
commit
4262a4b016
|
|
@ -8,6 +8,12 @@ set -xeuo pipefail
|
||||||
dn=$(dirname $0)
|
dn=$(dirname $0)
|
||||||
. ${dn}/libinsttest.sh
|
. ${dn}/libinsttest.sh
|
||||||
|
|
||||||
|
# These tests sort of bypass the installed-tests spec;
|
||||||
|
# fixing that would require installing g-d-t-r, though
|
||||||
|
# more ideally we architect things with a "control" container
|
||||||
|
# distinct from the host.
|
||||||
|
export G_TEST_SRCDIR=$(realpath $dn/../..)
|
||||||
|
|
||||||
# Use /var/tmp to hopefully use XFS + O_TMPFILE etc.
|
# Use /var/tmp to hopefully use XFS + O_TMPFILE etc.
|
||||||
tempdir=$(mktemp -d /var/tmp/tap-test.XXXXXX)
|
tempdir=$(mktemp -d /var/tmp/tap-test.XXXXXX)
|
||||||
touch ${tempdir}/.testtmp
|
touch ${tempdir}/.testtmp
|
||||||
|
|
@ -18,8 +24,5 @@ function cleanup () {
|
||||||
}
|
}
|
||||||
trap cleanup EXIT
|
trap cleanup EXIT
|
||||||
cd ${tempdir}
|
cd ${tempdir}
|
||||||
# This sort of bypasses the installed-tests spec;
|
|
||||||
# fixing that would require installing g-d-t-r, though
|
|
||||||
# more ideally we architect things with a "control" container
|
|
||||||
# distinct from the host.
|
|
||||||
/usr/libexec/installed-tests/libostree/test-basic.sh
|
/usr/libexec/installed-tests/libostree/test-basic.sh
|
||||||
|
/usr/libexec/installed-tests/libostree/test-basic-c
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue