]> git.sur5r.net Git - i3/i3/blob - travis/run-tests.sh
Merge pull request #2278 from jolange/version-extraction
[i3/i3] / travis / run-tests.sh
1 #!/bin/sh
2
3 set -e
4 set -x
5
6 cd testcases
7 # Try running the tests in parallel so that the common case (tests pass) is
8 # quick, but fall back to running them in sequence to make debugging easier.
9 if ! xvfb-run ./complete-run.pl
10 then
11         xvfb-run ./complete-run.pl --parallel=1 || (cat latest/complete-run.log; false)
12 fi