Skip to content

Commit b05264a

Browse files
stefwaltermartinpitt
authored andcommitted
unit-tests: Reset to non-blocking mode after build
HACK: Before running the tests we need to make sure stdio is in blocking mode. We have not yet been able to figure out what is putting it non-blocking. Closes cockpit-project#9469
1 parent d9359c0 commit b05264a

File tree

2 files changed

+14
-67
lines changed

2 files changed

+14
-67
lines changed

containers/unit-tests/run.sh

+14-6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
set -o pipefail
44
set -eux
55

6+
# HACK: Something invoked by our build system is setting stdio to non-blocking.
7+
# Validate that this isn't the surrounding context. See more below.
8+
python -c "import fcntl, os; assert fcntl.fcntl(0, fcntl.F_GETFL) & os.O_NONBLOCK == 0; assert fcntl.fcntl(1, fcntl.F_GETFL) & os.O_NONBLOCK == 0; assert fcntl.fcntl(2, fcntl.F_GETFL) & os.O_NONBLOCK == 0"
9+
610
# copy host's source tree to avoid changing that, and make sure we have a clean tree
711
if [ ! -e /source/.git ]; then
812
echo "This container must be run with --volume <host cockpit source checkout>:/source:ro" >&2
@@ -25,18 +29,22 @@ case $ARCH in
2529
exit 1
2630
esac
2731

28-
${CC:-gcc} ./tools/careful-cat.c -o careful-cat
2932
./autogen.sh --prefix=/usr --enable-strict --with-systemdunitdir=/tmp
30-
make -j2 V=1 all
33+
34+
make V=1 all
35+
36+
# HACK: Before running the tests we need to make sure stdio is in blocking mode. We have
37+
# not yet been able to figure out what is putting it non-blocknig.
38+
python -c "import fcntl, os; map(lambda fd: fcntl.fcntl(fd, fcntl.F_SETFL, fcntl.fcntl(fd, fcntl.F_GETFL) &~ os.O_NONBLOCK), [0, 1, 2])"
3139

3240
# only run distcheck on main arch
3341
if [ "$ARCH" = amd64 ]; then
34-
make -j8 distcheck 2>&1 | ./careful-cat
42+
make -j8 distcheck 2>&1
3543
else
36-
make -j8 check 2>&1 | ./careful-cat
44+
make -j8 check 2>&1
3745
fi
3846

39-
make -j8 check-memory 2>&1 | ./careful-cat || {
40-
./careful-cat test-suite.log
47+
make -j8 check-memory 2>&1 || {
48+
cat test-suite.log
4149
exit 1
4250
}

tools/careful-cat.c

-61
This file was deleted.

0 commit comments

Comments
 (0)