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



commit 405dbc6322316671341f22a29a2c369fb31fb597
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 67f4820..66b4c5c 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_load_and_change(): Test removal of a relationship.
 
 	* tests/test_document_load_and_change.cc: Test Document::remove_relationship().
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]