forked from mirrors/nixpkgs
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:
parent
57781346d7
commit
fb1f257189
|
@ -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
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue