From 3698b429c140dcc9837a21479b2d72b810c34ed4 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 22 Apr 2021 15:27:40 +0300 Subject: fix: add build-dependency on python3-distutils --- check | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'check') diff --git a/check b/check index 599d9e8..a20fe4e 100755 --- a/check +++ b/check @@ -30,6 +30,15 @@ subplot docgen bumper.md -o bumper.pdf subplot codegen bumper.md -o test.py rm -f test.log -$hideok python3 test.py --log test.log "$@" +if $hideok python3 test.py --log test.log "$@" +then + echo "test program OK" +else + echo "test program FAILED, log file follows" + echo ================================================================== + cat test.log + echo ================================================================== + exit 42 +fi echo "Everything seems to be in order." -- cgit v1.2.1