diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-30 18:56:34 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-30 18:56:34 +0100 |
commit | 8ba68d34ce659de1eac48f85932b17665c2e27ff (patch) | |
tree | 9c83707e63241313029096aa54bffc8e13b1bce7 /test | |
parent | Maintain a reverse index in instance vertices (diff) | |
download | ilt-8ba68d34ce659de1eac48f85932b17665c2e27ff.tar.bz2 ilt-8ba68d34ce659de1eac48f85932b17665c2e27ff.tar.xz ilt-8ba68d34ce659de1eac48f85932b17665c2e27ff.zip |
Fix run rules for perfs
Apparently Google benchmark doesn't like -- stuff syntax now
Diffstat (limited to 'test')
-rw-r--r-- | test/Jamfile.jam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam index f021d85..2048adc 100644 --- a/test/Jamfile.jam +++ b/test/Jamfile.jam @@ -55,9 +55,9 @@ run test-enumDetails.cpp ; run test-render.cpp : -- : test-assetFactory : <library>test ; run test-glContextBhvr.cpp ; run test-assetFactory.cpp : -- : [ sequence.insertion-sort [ glob-tree $(res) : *.* ] fixtures/rgb.txt test-instancing ] : <library>test ; -run perf-assetFactory.cpp : -- : test-assetFactory : <library>benchmark <library>test ; +run perf-assetFactory.cpp : <\ : test-assetFactory : <library>benchmark <library>test ; run perf-geoData.cpp : : : <library>test <library>benchmark ; -run perf-persistence.cpp : -- : test-persistence : <library>benchmark <library>test ; +run perf-persistence.cpp : \< : test-persistence : <library>benchmark <library>test ; run test-worker.cpp ; run test-instancing.cpp : -- : test-glContainer : <library>test ; run test-glContainer.cpp : : : <library>test ; |