Detect if the debug buffer exists before displaying it in test runner
This commit is contained in:
parent
6f78c7f910
commit
114f9c876d
8
test/run
8
test/run
|
@ -75,9 +75,11 @@ main() {
|
||||||
echo "$line" | colorize $color normal
|
echo "$line" | colorize $color normal
|
||||||
done
|
done
|
||||||
echo
|
echo
|
||||||
echo "debug buffer:" | colorize yellow normal
|
if test -e debug; then
|
||||||
cat debug
|
echo "debug buffer:" | colorize yellow normal
|
||||||
echo
|
cat debug
|
||||||
|
echo
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user