summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/convert-tests.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/convert-tests.sh b/tests/convert-tests.sh
index 57fd9252..8e97b225 100755
--- a/tests/convert-tests.sh
+++ b/tests/convert-tests.sh
@@ -41,7 +41,9 @@ run_one_test() {
./test.sh
if [ $? -ne 0 ]; then
if [[ $TEST_LOG =~ dump ]]; then
- cat "$RESULTS"
+ # the logs can be large and may exceed the
+ # limits, use 4MB for now
+ tail -c 3900000 "$RESULTS"
fi
_fail "test failed for case $testname"
fi