From 689a67405b4e49bb865258246ca4f2cbf1a96f4f Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 10 Mar 2011 22:55:07 -0500 Subject: [PATCH] Added performance tests to Makefile --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a277102..8e84c96 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ PATH_TOOLS=./tools PATH_COMBINE_OUTPUT=${PATH_BUILD}/ease.js PATH_COMBINE_OUTPUT_FULL=${PATH_BUILD}/ease-full.js PATH_BROWSER_TEST=${PATH_TOOLS}/browser-test.html +PATH_TEST=./test +PATH_PERF_TEST=${PATH_TEST}/perf COMBINE=${PATH_TOOLS}/combine @@ -29,12 +31,15 @@ test: default for test in `find ./test -name 'test-*.js'`; do \ node $${test}; \ done; \ - for test in `find ./test -regex '.*/test-[^\.]*'`; do \ ./$$test; \ done; +# performance tests +perf: default + find "${PATH_PERF_TEST}" -name 'perf-*.js' -exec node {} \; + # clean up build dir clean: rm -rf ${PATH_BUILD} - +