summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-02-27 00:26:20 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-02-27 00:26:20 +0000
commit2e440265e212c18208e683edab833fb9d3b735b4 (patch)
tree33498876147249e210313667c9c91b1cbc674b20 /test/Jamfile.jam
parentColour windows of sample model (diff)
downloadilt-2e440265e212c18208e683edab833fb9d3b735b4.tar.bz2
ilt-2e440265e212c18208e683edab833fb9d3b735b4.tar.xz
ilt-2e440265e212c18208e683edab833fb9d3b735b4.zip
Add a perf test over the asset factory
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r--test/Jamfile.jam5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam
index 06f907a..907632e 100644
--- a/test/Jamfile.jam
+++ b/test/Jamfile.jam
@@ -2,6 +2,7 @@ import testing ;
import sequence ;
lib boost_unit_test_framework ;
+lib benchmark ;
path-constant res : ../res ;
path-constant fixtures : fixtures ;
@@ -39,7 +40,7 @@ project : requirements
<toolset>tidy:<xcheckxx>hicpp-vararg
<toolset>tidy:<librarydef>boost
;
-lib test : [ glob *.cpp : test-*.cpp ] ;
+lib test : [ glob *.cpp : test-*.cpp perf-*.cpp ] ;
run test-collection.cpp ;
run test-obj.cpp ;
@@ -53,5 +54,7 @@ run test-enumDetails.cpp ;
run test-render.cpp : : : <library>test ;
run test-glContextBhvr.cpp ;
run test-assetFactory.cpp : -- : ../res/brush47.xml : <library>test ;
+run perf-assetFactory.cpp : : : <library>benchmark <library>test ;
compile test-static-enumDetails.cpp ;
compile test-static-stream_support.cpp ;
+explicit perf-assetFactory ;