Make "make check" less noisy.
authorMatthias Clasen <matthiasc@src.gnome.org>
Tue, 8 Jun 2004 02:29:16 +0000 (02:29 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 8 Jun 2004 02:29:16 +0000 (02:29 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/run-markup-tests.sh

index 93f7df3..1662c04 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jun  7 22:25:24 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/run-markup-tests.sh: Default to silence, but support
+       a -v argument to get the old output back. 
+
 2004-06-06  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_get_any_init): Check home for being
index 93f7df3..1662c04 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jun  7 22:25:24 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/run-markup-tests.sh: Default to silence, but support
+       a -v argument to get the old output back. 
+
 2004-06-06  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_get_any_init): Check home for being
index 93f7df3..1662c04 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jun  7 22:25:24 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/run-markup-tests.sh: Default to silence, but support
+       a -v argument to get the old output back. 
+
 2004-06-06  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_get_any_init): Check home for being
index 93f7df3..1662c04 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jun  7 22:25:24 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/run-markup-tests.sh: Default to silence, but support
+       a -v argument to get the old output back. 
+
 2004-06-06  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_get_any_init): Check home for being
index 93f7df3..1662c04 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jun  7 22:25:24 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/run-markup-tests.sh: Default to silence, but support
+       a -v argument to get the old output back. 
+
 2004-06-06  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_get_any_init): Check home for being
index fb65086..bbc378c 100755 (executable)
@@ -6,17 +6,29 @@ fail ()
   exit 1
 }
 
+echo_v ()
+{
+  if [ "$verbose" = "1" ]; then
+    echo "$*"
+  fi
+}
+
+error_out=/dev/null
+if [ "$1" = "-v" ]; then
+  verbose=1
+  error_out=/dev/stderr
+fi  
 for I in $srcdir/markups/fail-*.gmarkup; do
-  echo "Parsing $I, should fail"
-  ./markup-test $I > /dev/null && fail "failed to generate error on $I"
+  echo_v "Parsing $I, should fail"
+  ./markup-test $I > /dev/null 2> $error_out && fail "failed to generate error on $I"
   if test "$?" != "1"; then
     fail "unexpected error on $I"
   fi  
 done
 
 for I in $srcdir/markups/valid-*.gmarkup; do
-  echo "Parsing $I, should succeed"
-  ./markup-test $I > /dev/null || fail "failed on $I"
+  echo_v "Parsing $I, should succeed"
+  ./markup-test $I > /dev/null 2> $error_out || fail "failed on $I"
 done
 
-echo "All tests passed."
+echo_v "All tests passed."