diff options
author | Magnus Klaar <[email protected]> | 2011-12-24 00:58:03 +0100 |
---|---|---|
committer | Magnus Klaar <[email protected]> | 2012-01-25 12:10:05 +0100 |
commit | 88088251732e36f72e3edf806a5561b569e62c19 (patch) | |
tree | 211d7f8a16e71d3602904cc8311646e2b4febac1 /Makefile | |
parent | 4b93c2d19a10e5d9cee207038103bb83f1ab9436 (diff) | |
download | cowboy-88088251732e36f72e3edf806a5561b569e62c19.tar.gz cowboy-88088251732e36f72e3edf806a5561b569e62c19.tar.bz2 cowboy-88088251732e36f72e3edf806a5561b569e62c19.zip |
Add Autobahn test suite for websockets
We're using the existing test suite for websocket servers from the
Autobahn project to verify that out websockets implementation is
sane. A CT test suite and python module wrapping the test suite has
been added. The test suite is run when the 'make inttests' target
is executed.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -18,11 +18,16 @@ clean: tests: clean app eunit ct +inttests: clean app eunit intct + eunit: @$(REBAR) eunit skip_deps=true ct: - @$(REBAR) ct skip_deps=true + @$(REBAR) ct skip_deps=true suites=http,ws + +intct: + @$(REBAR) ct skip_deps=true suites=http,ws,autobahn build-plt: @$(DIALYZER) --build_plt --output_plt .cowboy_dialyzer.plt \ |