Skip to content

Commit f768705

Browse files
committed
DNM: debug only
Signed-off-by: Paul Holzinger <[email protected]>
1 parent 413a036 commit f768705

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

contrib/cirrus/runner.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,9 @@ dotest() {
418418
die "The CI test TMPDIR is not on a tmpfs mount, we need tmpfs to make the tests faster"
419419
fi
420420

421+
echo "----------"
422+
printenv NOTIFY_SOCKET
423+
421424
showrun make ${localremote}${testsuite} PODMAN_SERVER_LOG=$PODMAN_SERVER_LOG EXTRA_BUILDTAGS="$TEST_BUILD_TAGS" \
422425
|& logformatter
423426

contrib/cirrus/setup_environment.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ echo -e "\n# Begin single-use VM global variables (${BASH_SOURCE[0]})" \
7373
done <<<"$(passthrough_envars)"
7474
) >> "/etc/ci_environment"
7575

76+
echo "NOTIFY_SOCKET ---------"
77+
printenv NOTIFY_SOCKET || true
78+
echo "-------------"
7679
# Unset NOTIFY_SOCKET based on: https://github.com/containers/podman/pull/27514#issuecomment-3529125596
7780
unset NOTIFY_SOCKET
7881
# This is a possible manual maintenance gaff, i.e. forgetting to update a

test/system/140-diff.bats

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ load helpers
3838
}
3939

4040
@test "podman diff with buildah container " {
41+
printenv NOTIFY_SOCKET
42+
4143
rand_file=$(random_string 10)
44+
4245
buildah from --name buildahctr $IMAGE
4346
buildah run buildahctr sh -c "touch /$rand_file;rm /etc/services"
4447

test/system/161-volume-quotas.bats

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ function teardown() {
6565
# make the function aware of the custom --root.
6666
_PODMAN_TEST_OPTS="$safe_opts --storage-driver $(podman_storage_driver)" _prefetch $IMAGE
6767

68+
ls -lZ --recursive ${PODMAN_TMPDIR}/root
69+
6870
ctrname="testctr"
6971
# pull never to ensure the prefetch works correctly
7072
run_podman $safe_opts run -d --pull=never --name=$ctrname -i -v $vol_one:/one -v $vol_two:/two $IMAGE top

test/system/setup_suite.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ function setup_suite() {
1818
IFS="
1919
"
2020

21+
printenv NOTIFY_SOCKET >&3
22+
2123
# These are set/generated even for non-remote tests because some local tests still create their
2224
# own system service.
2325
export REMOTESYSTEM_UNIX_SOCK=$(mktemp ${BATS_SUITE_TMPDIR}/remotesystem.podman.XXXXXX.sock)

0 commit comments

Comments
 (0)