diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-08 15:02:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-08 15:02:32 +0200 |
commit | 769d02def3524a0f0e21869e7f2c57d9bb046332 (patch) | |
tree | 217561e17afcc14accd45073389da93e61d3e33b /boost | |
parent | 6b140db71e9c400d2f7fc5edda55c1636ca0f6b5 (diff) |
Clean test templates of old cruft
Most tests don't print anything
Diffstat (limited to 'boost')
-rw-r--r-- | boost/common/template/driver.cxx | 3 | ||||
-rw-r--r-- | boost/common/template/test.std | 1 | ||||
-rw-r--r-- | boost/mssql/template/driver.cxx | 3 | ||||
-rw-r--r-- | boost/mssql/template/test.std | 1 | ||||
-rw-r--r-- | boost/mysql/template/driver.cxx | 3 | ||||
-rw-r--r-- | boost/mysql/template/test.std | 1 | ||||
-rw-r--r-- | boost/oracle/template/driver.cxx | 3 | ||||
-rw-r--r-- | boost/oracle/template/test.std | 1 | ||||
-rw-r--r-- | boost/pgsql/template/driver.cxx | 3 | ||||
-rw-r--r-- | boost/pgsql/template/test.std | 1 | ||||
-rw-r--r-- | boost/sqlite/template/driver.cxx | 3 | ||||
-rw-r--r-- | boost/sqlite/template/test.std | 1 |
12 files changed, 0 insertions, 24 deletions
diff --git a/boost/common/template/driver.cxx b/boost/common/template/driver.cxx index 15ad4da..c84c7ae 100644 --- a/boost/common/template/driver.cxx +++ b/boost/common/template/driver.cxx @@ -27,9 +27,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_database (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/boost/common/template/test.std b/boost/common/template/test.std index af8d8e7..e69de29 100644 --- a/boost/common/template/test.std +++ b/boost/common/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/boost/mssql/template/driver.cxx b/boost/mssql/template/driver.cxx index 648bf1d..920161e 100644 --- a/boost/mssql/template/driver.cxx +++ b/boost/mssql/template/driver.cxx @@ -27,9 +27,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_database (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/boost/mssql/template/test.std b/boost/mssql/template/test.std index af8d8e7..e69de29 100644 --- a/boost/mssql/template/test.std +++ b/boost/mssql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/boost/mysql/template/driver.cxx b/boost/mysql/template/driver.cxx index d077287..c37c624 100644 --- a/boost/mysql/template/driver.cxx +++ b/boost/mysql/template/driver.cxx @@ -27,9 +27,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_database (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/boost/mysql/template/test.std b/boost/mysql/template/test.std index af8d8e7..e69de29 100644 --- a/boost/mysql/template/test.std +++ b/boost/mysql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/boost/oracle/template/driver.cxx b/boost/oracle/template/driver.cxx index 7aeb4a5..1884b49 100644 --- a/boost/oracle/template/driver.cxx +++ b/boost/oracle/template/driver.cxx @@ -27,9 +27,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_database (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/boost/oracle/template/test.std b/boost/oracle/template/test.std index af8d8e7..e69de29 100644 --- a/boost/oracle/template/test.std +++ b/boost/oracle/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/boost/pgsql/template/driver.cxx b/boost/pgsql/template/driver.cxx index 5dc428a..927ac04 100644 --- a/boost/pgsql/template/driver.cxx +++ b/boost/pgsql/template/driver.cxx @@ -27,9 +27,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_database (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/boost/pgsql/template/test.std b/boost/pgsql/template/test.std index af8d8e7..e69de29 100644 --- a/boost/pgsql/template/test.std +++ b/boost/pgsql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/boost/sqlite/template/driver.cxx b/boost/sqlite/template/driver.cxx index de470c6..285f6d8 100644 --- a/boost/sqlite/template/driver.cxx +++ b/boost/sqlite/template/driver.cxx @@ -27,9 +27,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_database (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/boost/sqlite/template/test.std b/boost/sqlite/template/test.std index af8d8e7..e69de29 100644 --- a/boost/sqlite/template/test.std +++ b/boost/sqlite/template/test.std @@ -1 +0,0 @@ -test 001 |