summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-05-20 14:01:28 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-05-20 20:09:00 +0100
commitdfd6182bbb2f683d9ae096fed3210ee5f84a3d25 (patch)
tree56c90482c572814695711aba0a94c4488c44cb48 /test
parent12789938dc2881750c2a8b2e77430be5b297942d (diff)
Test suite shows something when kakoune exit code is not 0
Diffstat (limited to 'test')
-rwxr-xr-xtest/run4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/run b/test/run
index e3178c2e..65e8808b 100755
--- a/test/run
+++ b/test/run
@@ -42,6 +42,10 @@ main() {
quit!
"
${test}/../src/kak out -n -u -e "$kak_commands"
+ retval=$?
+ if (( retval != 0 )); then
+ echo "Kakoune returned error $retval"
+ fi
for expect in $test_files; do
if cmp -s $test/$dir/$expect $expect; then
echo "$indent$name" | colorize green normal