gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog Makefile.am testsuite/Makefile....


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog Makefile.am testsuite/Makefile....
Date: Thu, 10 May 2007 15:50:21 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/05/10 15:50:20

Modified files:
        .              : ChangeLog Makefile.am 
        testsuite      : Makefile.am anaylse-results.sh 

Log message:
                * testsuite/anaylse-results.sh: print an header before the 
actual
                  results; don't limit depth of search for summary files.
                * Makefile.am, add an anal rule to run the test results 
analyzer.
                  Run the analyzer at end of 'make check', so the report doesn't
                  scroll-up.
                * testsuite/Makefile.am: don't run the analyzer from testsuite/ 
dir
                  as it would miss some tests in upper directories.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3156&r2=1.3157
http://cvs.savannah.gnu.org/viewcvs/gnash/Makefile.am?cvsroot=gnash&r1=1.71&r2=1.72
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/Makefile.am?cvsroot=gnash&r1=1.36&r2=1.37
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/anaylse-results.sh?cvsroot=gnash&r1=1.6&r2=1.7

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3156
retrieving revision 1.3157
diff -u -b -r1.3156 -r1.3157
--- ChangeLog   10 May 2007 15:10:42 -0000      1.3156
+++ ChangeLog   10 May 2007 15:50:20 -0000      1.3157
@@ -1,5 +1,15 @@
 2007-05-10 Sandro Santilli <address@hidden>
 
+       * testsuite/anaylse-results.sh: print an header before the actual
+         results; don't limit depth of search for summary files.
+       * Makefile.am, add an anal rule to run the test results analyzer.
+         Run the analyzer at end of 'make check', so the report doesn't
+         scroll-up.
+       * testsuite/Makefile.am: don't run the analyzer from testsuite/ dir
+         as it would miss some tests in upper directories.
+
+2007-05-10 Sandro Santilli <address@hidden>
+
        * testsuite/misc-ming.all/: Makefile.am, displaylist_depths_test2.c,
          displaylist_depths_test3.c: Cleanup comments for test2 and add
          new scenario for Timeline Control (see wiki for more details).

Index: Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/Makefile.am,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -b -r1.71 -r1.72
--- Makefile.am 8 May 2007 19:31:21 -0000       1.71
+++ Makefile.am 10 May 2007 15:50:20 -0000      1.72
@@ -15,7 +15,7 @@
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 # 
 
-# $Id: Makefile.am,v 1.71 2007/05/08 19:31:21 strk Exp $
+# $Id: Makefile.am,v 1.72 2007/05/10 15:50:20 strk Exp $
 
 ## Process this file with automake to produce Makefile.in
 AUTOMAKE_OPTIONS = 1.6.0
@@ -246,3 +246,9 @@
        @echo "Renderer engine: $(RENDER_OPT)"
        @echo "GUI: $(GUI_OPT)"
        @echo "Extensions: $(EXTENSIONS_LIST)"
+
+check: check-recursive anal
+
+anal testreport checksum:
+       $(srcdir)/testsuite/anaylse-results.sh
+

Index: testsuite/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/testsuite/Makefile.am,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -b -r1.36 -r1.37
--- testsuite/Makefile.am       8 May 2007 21:26:48 -0000       1.36
+++ testsuite/Makefile.am       10 May 2007 15:50:20 -0000      1.37
@@ -45,9 +45,6 @@
        $(BOOST_CFLAGS) \
        $(NULL)
 
-check: check-recursive
-       $(srcdir)/anaylse-results.sh
-
 if ENABLE_MING
 
 .PHONY: Dejagnu.swf

Index: testsuite/anaylse-results.sh
===================================================================
RCS file: /sources/gnash/gnash/testsuite/anaylse-results.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- testsuite/anaylse-results.sh        29 Nov 2006 16:08:25 -0000      1.6
+++ testsuite/anaylse-results.sh        10 May 2007 15:50:20 -0000      1.7
@@ -14,7 +14,15 @@
 total_xpass=0;
 total_unresolved=0;
 
-for dir in `find . -maxdepth 1 -type d | egrep -v ".libs|.deps" | grep "./" | 
sort`; do
+echo
+echo "[Test Results Summary]"
+echo
+
+# TODO1: always find in top-level dir instead (taking a parameter) ?
+# TODO2: increment -maxdepth in case we add subdirs to our testsuites ?
+
+#for dir in `find . -maxdepth 1 -type d | egrep -v ".libs|.deps" | grep "./" | 
sort`; do
+for dir in `find . -type d | egrep -v ".libs|.deps" | grep "./" | sort`; do
     if test ! -f "${dir}/testrun.sum" ; then
        continue
     fi




reply via email to

[Prev in Thread] Current Thread [Next in Thread]