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 | |
parent | 6b140db71e9c400d2f7fc5edda55c1636ca0f6b5 (diff) |
Clean test templates of old cruft
Most tests don't print anything
36 files changed, 0 insertions, 72 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 diff --git a/common/template/driver.cxx b/common/template/driver.cxx index 43de3eb..4cb1e7a 100644 --- a/common/template/driver.cxx +++ b/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/common/template/test.std b/common/template/test.std index af8d8e7..e69de29 100644 --- a/common/template/test.std +++ b/common/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/mssql/template/driver.cxx b/mssql/template/driver.cxx index aec5c21..8a9bec7 100644 --- a/mssql/template/driver.cxx +++ b/mssql/template/driver.cxx @@ -28,9 +28,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_specific_database<database> (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/mssql/template/test.std b/mssql/template/test.std index af8d8e7..e69de29 100644 --- a/mssql/template/test.std +++ b/mssql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/mysql/template/driver.cxx b/mysql/template/driver.cxx index a1b45cb..c8358b1 100644 --- a/mysql/template/driver.cxx +++ b/mysql/template/driver.cxx @@ -28,9 +28,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_specific_database<database> (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/mysql/template/test.std b/mysql/template/test.std index af8d8e7..e69de29 100644 --- a/mysql/template/test.std +++ b/mysql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/oracle/template/driver.cxx b/oracle/template/driver.cxx index f0e9771..6051439 100644 --- a/oracle/template/driver.cxx +++ b/oracle/template/driver.cxx @@ -28,9 +28,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_specific_database<database> (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/oracle/template/test.std b/oracle/template/test.std index af8d8e7..e69de29 100644 --- a/oracle/template/test.std +++ b/oracle/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/pgsql/template/driver.cxx b/pgsql/template/driver.cxx index 33e2289..e57f14a 100644 --- a/pgsql/template/driver.cxx +++ b/pgsql/template/driver.cxx @@ -28,9 +28,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_specific_database<database> (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/pgsql/template/test.std b/pgsql/template/test.std index af8d8e7..e69de29 100644 --- a/pgsql/template/test.std +++ b/pgsql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/qt/common/template/driver.cxx b/qt/common/template/driver.cxx index 9432f59..7d3c067 100644 --- a/qt/common/template/driver.cxx +++ b/qt/common/template/driver.cxx @@ -31,9 +31,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/qt/common/template/test.std b/qt/common/template/test.std index af8d8e7..e69de29 100644 --- a/qt/common/template/test.std +++ b/qt/common/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/qt/mssql/template/driver.cxx b/qt/mssql/template/driver.cxx index 52d580f..9bc1804 100644 --- a/qt/mssql/template/driver.cxx +++ b/qt/mssql/template/driver.cxx @@ -31,9 +31,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/qt/mssql/template/test.std b/qt/mssql/template/test.std index af8d8e7..e69de29 100644 --- a/qt/mssql/template/test.std +++ b/qt/mssql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/qt/mysql/template/driver.cxx b/qt/mysql/template/driver.cxx index 2cf6c4a..9d5cf37 100644 --- a/qt/mysql/template/driver.cxx +++ b/qt/mysql/template/driver.cxx @@ -31,9 +31,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/qt/mysql/template/test.std b/qt/mysql/template/test.std index af8d8e7..e69de29 100644 --- a/qt/mysql/template/test.std +++ b/qt/mysql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/qt/oracle/template/driver.cxx b/qt/oracle/template/driver.cxx index a3bb67e..1c37926 100644 --- a/qt/oracle/template/driver.cxx +++ b/qt/oracle/template/driver.cxx @@ -31,9 +31,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/qt/oracle/template/test.std b/qt/oracle/template/test.std index af8d8e7..e69de29 100644 --- a/qt/oracle/template/test.std +++ b/qt/oracle/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/qt/pgsql/template/driver.cxx b/qt/pgsql/template/driver.cxx index 1b55683..0b99fba 100644 --- a/qt/pgsql/template/driver.cxx +++ b/qt/pgsql/template/driver.cxx @@ -31,9 +31,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/qt/pgsql/template/test.std b/qt/pgsql/template/test.std index af8d8e7..e69de29 100644 --- a/qt/pgsql/template/test.std +++ b/qt/pgsql/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/qt/sqlite/template/driver.cxx b/qt/sqlite/template/driver.cxx index 03f45ed..1d90748 100644 --- a/qt/sqlite/template/driver.cxx +++ b/qt/sqlite/template/driver.cxx @@ -31,9 +31,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/qt/sqlite/template/test.std b/qt/sqlite/template/test.std index af8d8e7..e69de29 100644 --- a/qt/sqlite/template/test.std +++ b/qt/sqlite/template/test.std @@ -1 +0,0 @@ -test 001 diff --git a/sqlite/template/driver.cxx b/sqlite/template/driver.cxx index 7a8438c..c7b9390 100644 --- a/sqlite/template/driver.cxx +++ b/sqlite/template/driver.cxx @@ -28,9 +28,6 @@ main (int argc, char* argv[]) { auto_ptr<database> db (create_specific_database<database> (argc, argv)); - // - // - cout << "test 001" << endl; { transaction t (db->begin ()); t.commit (); diff --git a/sqlite/template/test.std b/sqlite/template/test.std index af8d8e7..e69de29 100644 --- a/sqlite/template/test.std +++ b/sqlite/template/test.std @@ -1 +0,0 @@ -test 001 |