i3: Don't run test cases in parallel.

Unfortunately, running them in parallel sometimes lead to tests not even
starting up. Probably lock contention is the issue here, but haven't
investigated further so I'm deactivating parallel testing.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-08-01 08:04:09 +02:00
parent 57781346d7
commit fb1f257189
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
checkPhase = ''
ln -sf "${xdummy}/bin/xdummy" testcases/Xdummy
(cd testcases && perl complete-run.pl)
(cd testcases && perl complete-run.pl -p 1)
! grep -q '^not ok' testcases/latest/complete-run.log
'';