From 5c5091f723afec6ba89e252b72855c21784fb9e9 Mon Sep 17 00:00:00 2001 From: Chris Boden Date: Sat, 14 Jul 2012 17:16:45 -0400 Subject: [PATCH] Fixed # open file bug --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ee20908..ade0e17 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,8 @@ cover: phpunit --coverage-text --coverage-html=reports/coverage abtests: - ulimit -n 2048 - php tests/AutobahnTestSuite/bin/fuzzingserver-libevent.php & - php tests/AutobahnTestSuite/bin/fuzzingserver-stream.php & + ulimit -n 2048 && php tests/AutobahnTestSuite/bin/fuzzingserver-libevent.php & + ulimit -n 2048 && php tests/AutobahnTestSuite/bin/fuzzingserver-stream.php & wstest -m testeeserver -w ws://localhost:8002 & wstest -m fuzzingclient -s tests/AutobahnTestSuite/fuzzingclient-all.json killall php