Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: split simple into io/simple, run in parallel #172

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
makefile: fixes for win32 and unix
indutny committed Dec 17, 2014
commit b8a9f40395228f59a554023cd8027a30528c6f10
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -98,10 +98,10 @@ test-parallel: all
$(PYTHON) tools/test.py --mode=release parallel -J

test-http1: all
$(PYTHON) tools/test.py --mode=release --use-http1 simple message
$(PYTHON) tools/test.py --mode=release --use-http1 sequential parallel message

test-valgrind: all
$(PYTHON) tools/test.py --mode=release --valgrind simple message
$(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message

test/gc/node_modules/weak/build/Release/weakref.node:
@if [ ! -f $(NODE_EXE) ]; then make all; fi
@@ -144,7 +144,7 @@ test-message: test-build
$(PYTHON) tools/test.py message

test-simple: all
$(PYTHON) tools/test.py simple
$(PYTHON) tools/test.py parallel sequential

test-pummel: all wrk
$(PYTHON) tools/test.py pummel
4 changes: 2 additions & 2 deletions vcbuild.bat
Original file line number Diff line number Diff line change
@@ -163,10 +163,10 @@ if "%test%"=="" goto exit
if "%config%"=="Debug" set test_args=--mode=debug
if "%config%"=="Release" set test_args=--mode=release

if "%test%"=="test" set test_args=%test_args% simple message
if "%test%"=="test" set test_args=%test_args% sequential parallel message -J
if "%test%"=="test-internet" set test_args=%test_args% internet
if "%test%"=="test-pummel" set test_args=%test_args% pummel
if "%test%"=="test-simple" set test_args=%test_args% simple
if "%test%"=="test-simple" set test_args=%test_args% sequential parallel
if "%test%"=="test-message" set test_args=%test_args% message
if "%test%"=="test-gc" set test_args=%test_args% gc
if "%test%"=="test-all" set test_args=%test_args%