[glom] self-hosting tests: Avoid some noisy stdout messages.



commit 0f18b45999d5c0ab14df49390a72c4f85ee275af
Author: Murray Cumming <murrayc murrayc com>
Date:   Wed Nov 30 10:29:16 2011 +0100

    self-hosting tests: Avoid some noisy stdout messages.
    
    * tests/test_selfhosting_utils.cc: Do not show PostgreSQL startup, etc,
    progress messages.

 ChangeLog                       |    7 +++++++
 tests/test_selfhosting_utils.cc |    8 ++++----
 2 files changed, 11 insertions(+), 4 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 1ab6b19..ce3be02 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2011-11-30  Murray Cumming  <murrayc murrayc com>
 
+	self-hosting tests: Avoid some noisy stdout messages.
+
+	* tests/test_selfhosting_utils.cc: Do not show PostgreSQL startup, etc,
+	progress messages.
+
+2011-11-30  Murray Cumming  <murrayc murrayc com>
+
 	test_document_load: Test print layout functions.
 
 	* examples/example_film_manager.glom: Add a contacts print layout and 
diff --git a/tests/test_selfhosting_utils.cc b/tests/test_selfhosting_utils.cc
index 16493c8..6401fd3 100644
--- a/tests/test_selfhosting_utils.cc
+++ b/tests/test_selfhosting_utils.cc
@@ -34,22 +34,22 @@
 
 static void on_initialize_progress()
 {
-  std::cout << "Database initialization progress" << std::endl;
+  //std::cout << "Database initialization progress" << std::endl;
 }
 
 static void on_startup_progress()
 {
-  std::cout << "Database startup progress" << std::endl;
+  //std::cout << "Database startup progress" << std::endl;
 }
 
 static void on_recreate_progress()
 {
-  std::cout << "Database re-creation progress" << std::endl;
+  //std::cout << "Database re-creation progress" << std::endl;
 }
 
 static void on_cleanup_progress()
 {
-  std::cout << "Database cleanup progress" << std::endl;
+  //std::cout << "Database cleanup progress" << std::endl;
 }
 
 std::string temp_filepath_dir;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]