From 1d28a6f5f5dfcd558d63f4683a2d495282f96ac6 Mon Sep 17 00:00:00 2001 From: Gregory Burd Date: Mon, 28 Nov 2011 15:59:57 -0500 Subject: [PATCH] Add thrash test. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 517f325..a30bee7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ ERL ?=erl +CT_RUN ?=ct_run ERL_FLAGS ?=+A10 REBAR_FLAGS := @@ -11,6 +12,9 @@ test: tests tests: @ $(REBAR) $(REBAR_FLAGS) eunit ct +thrash-test: + @ $(CT_RUN) -pa test/ -suite thrash_SUITE + clean: $(REBAR) $(REBAR_FLAGS) clean -rm test/*.beam