summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-06-12 20:31:17 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-06-12 20:31:17 +0100
commit5c9443849dd33e91690369f8194ac0cd725f23ec (patch)
treec0495ffb12436a4535d2a15e375826a15c744883 /test/Jamfile.jam
parentAvoid direct use of runtime_error in MySQL stuff (diff)
downloadmygrate-5c9443849dd33e91690369f8194ac0cd725f23ec.tar.bz2
mygrate-5c9443849dd33e91690369f8194ac0cd725f23ec.tar.xz
mygrate-5c9443849dd33e91690369f8194ac0cd725f23ec.zip
Create a basic MySQL testing database class
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r--test/Jamfile.jam9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam
index 2cdf94c..38bee41 100644
--- a/test/Jamfile.jam
+++ b/test/Jamfile.jam
@@ -2,13 +2,18 @@ lib boost_unit_test_framework ;
project : requirements
<library>../lib//mygrate
- <library>boost_unit_test_framework
+ <library>boost_unit_test_framework/<link>shared
<define>BOOST_TEST_DYN_LINK
;
+lib testdb :
+ [ glob testdb-*.cpp ] :
+ <link>static
+ ;
+
run test-rawDataReader.cpp ;
run test-bitset.cpp ;
run test-streams.cpp ;
run test-misc.cpp ;
-run test-mysql.cpp ;
+run test-mysql.cpp : : : <library>testdb ;
run test-postgresql.cpp ;