Mercurial > hg
view tests/testlib/sigpipe-worker.py @ 48522:b52cf5063865 stable
heptapod-ci: make Windows jobs manual again
The dance continues, we make the Windows tests optional once again since we
don't have Windows runners available anymore. We're working on getting new ones
in a more stable fashion, hopefully soon.
Differential Revision: https://phab.mercurial-scm.org/D11957
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Mon, 03 Jan 2022 10:43:17 +0100 |
parents | 27ff81547d35 |
children | 6000f5b25c9b |
line wrap: on
line source
#!/usr/bin/env python3 # # This is literally `cat` but in python, one char at a time. # # see sigpipe-remote.py for details. from __future__ import print_function import io import os import sys if isinstance(sys.stdout.buffer, io.BufferedWriter): print('SIGPIPE-WORKER: script need unbuffered output', file=sys.stderr) sys.exit(255) while True: c = os.read(sys.stdin.fileno(), 1) os.write(sys.stdout.fileno(), c)