$ docker run --rm --name validator-libc6-usage-python3-struct-pack-2727 -t --mount type=bind,src=/tmp/validator-status-libc6-usage-python3-struct-pack,dst=/validator/status validator-libc6-shared bash -lc 'set -euo pipefail /validator/tests/_shared/install_override_debs.sh exec /validator/tests/_shared/run_library_tests.sh "$@"' validator-testcase libc6 usage-python3-struct-pack -- bash -c 'PS4=$1; shift; set -x; source "$@"' validator-xtrace '__VALIDATOR_XTRACE__ ' /validator/tests/libc6/tests/cases/usage/usage-python3-struct-pack.sh no override packages found; continuing with apt originals import struct packed = struct.pack(">I", 0x12345678) unpacked = struct.unpack(">I", packed)[0] with open("/tmp/validator-tmp/out", "w") as fh: fh.write(packed.hex() + "\n") fh.write(str(unpacked) + "\n") '