mirror of
https://github.com/nick-fields/retry.git
synced 2025-12-28 18:58:52 +08:00
* minor: use spawn to stream larger output rather than exec which buffers it * test: verify distinct error code is returned from large output test * test: breakout additional integration tests to run in parallel * test: dont pass/fail PRs for coverage yet
14 lines
302 B
Makefile
14 lines
302 B
Makefile
SHELL = bash
|
|
|
|
# this tests fix for the following issues
|
|
# https://github.com/nick-fields/retry/issues/76
|
|
# https://github.com/nick-fields/retry/issues/84
|
|
|
|
bytes-%:
|
|
for i in {1..$*}; do cat kibibyte.txt; done; exit 2
|
|
.PHONY: bytes-%
|
|
|
|
lines-%:
|
|
for i in {1..$*}; do echo a; done; exit 2
|
|
.PHONY: lines-%
|