summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Hood <cgull@glup.org>2017-05-21 12:49:18 -0400
committerJohn Hood <cgull@glup.org>2017-05-21 12:49:18 -0400
commit9f54cc76d2c60d5735a27f2a7973481944a0237a (patch)
treeeeb396ee4d7d2560cb7f17c7620d02cf6c6fd48b
parentb17c5795f74f392ef127e32a27df2d8fe0e861be (diff)
Detect broken tmux in tests
This works around Debian kfreebsd build failures.
-rwxr-xr-xsrc/tests/e2e-test3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/e2e-test b/src/tests/e2e-test
index 1c69be8..ab734cf 100755
--- a/src/tests/e2e-test
+++ b/src/tests/e2e-test
@@ -82,7 +82,8 @@ tmux_check()
error "tmux version %s too old\n" "$version"
return 1
fi
- return 0
+ # Finally, check that tmux actually works to some degree.
+ tmux -C new-session true
}
ssh_localhost_check()