summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-03-17 00:35:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-03-17 00:35:57 +0000
commit7867a8a91a2210e1fb4f4bfb71d24ef4c1e8bd86 (patch)
tree845404bd09f1f9a9d45e0d44fae929a6370626e6 /test/Jamfile.jam
parentSimplify calculation of texture position fraction (diff)
downloadilt-7867a8a91a2210e1fb4f4bfb71d24ef4c1e8bd86.tar.bz2
ilt-7867a8a91a2210e1fb4f4bfb71d24ef4c1e8bd86.tar.xz
ilt-7867a8a91a2210e1fb4f4bfb71d24ef4c1e8bd86.zip
Update test/fixture/resource dependencies
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r--test/Jamfile.jam5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam
index e178573..e38a80e 100644
--- a/test/Jamfile.jam
+++ b/test/Jamfile.jam
@@ -1,5 +1,6 @@
import testing ;
import sequence ;
+import path : glob-tree ;
lib boost_unit_test_framework ;
lib benchmark ;
@@ -48,12 +49,12 @@ run test-maths.cpp ;
run test-lib.cpp ;
run test-geo.cpp ;
run test-network.cpp ;
-run test-persistence.cpp : -- : [ sequence.insertion-sort [ glob fixtures/json/*.json fixtures/json/bad/*.json ] ] : <library>test ;
+run test-persistence.cpp : -- : [ sequence.insertion-sort [ glob-tree fixtures : *.json ] ] : <library>test ;
run test-text.cpp ;
run test-enumDetails.cpp ;
run test-render.cpp : : : <library>test ;
run test-glContextBhvr.cpp ;
-run test-assetFactory.cpp : -- : ../res/brush47.xml : <library>test ;
+run test-assetFactory.cpp : -- : [ sequence.insertion-sort [ glob-tree $(res) : *.xml *.png ] fixtures/rgb.txt ] : <library>test ;
run perf-assetFactory.cpp : : : <library>benchmark <library>test ;
run perf-persistence.cpp : : : <library>benchmark <library>test ;
compile test-static-enumDetails.cpp ;