gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog testsuite/misc-ming.all/Makefil...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/misc-ming.all/Makefil...
Date: Fri, 13 Oct 2006 14:28:59 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/10/13 14:28:59

Modified files:
        .              : ChangeLog 
        testsuite/misc-ming.all: Makefile.am 
        testsuite/server: Makefile.am 
        testsuite/libbase: Makefile.am 

Log message:
        update dejagnu rule to use check_PROGRAMS rather then noinst_PROGRAMS.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1194&r2=1.1195
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-ming.all/Makefile.am?cvsroot=gnash&r1=1.21&r2=1.22
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/server/Makefile.am?cvsroot=gnash&r1=1.6&r2=1.7
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/libbase/Makefile.am?cvsroot=gnash&r1=1.17&r2=1.18

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1194
retrieving revision 1.1195
diff -u -b -r1.1194 -r1.1195
--- ChangeLog   13 Oct 2006 13:45:31 -0000      1.1194
+++ ChangeLog   13 Oct 2006 14:28:59 -0000      1.1195
@@ -1,5 +1,8 @@
 2006-10-13 Sandro Santilli <address@hidden>
 
+       * testsuite/libbase/Makefile.am, testsuite/misc-ming.all/Makefile.am,
+         testsuite/server/Makefile.am: update dejagnu rule to use
+         check_PROGRAMS rather then noinst_PROGRAMS.
        * testsuite/misc-ming.all/DefineEditTextVariableNameTest.c: 
          add border to the textfield (to test for bug# 17992).
        * testsuite/libbase/Makefile.am, testsuite/misc-ming.all/Makefile.am,

Index: testsuite/misc-ming.all/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/testsuite/misc-ming.all/Makefile.am,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- testsuite/misc-ming.all/Makefile.am 13 Oct 2006 13:27:05 -0000      1.21
+++ testsuite/misc-ming.all/Makefile.am 13 Oct 2006 14:28:59 -0000      1.22
@@ -137,7 +137,7 @@
 TEST_DRIVERS = ming.exp
 TEST_CASES = DefineEditTextVariableNameTest-Runner
 
-check-DEJAGNU: site-update $(noinst_PROGRAMS)
+check-DEJAGNU: site-update $(check_PROGRAMS)
        @runtest=$(RUNTEST); \
        if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
            $$runtest $(RUNTESTFLAGS) $(TEST_DRIVERS); \

Index: testsuite/server/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/testsuite/server/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- testsuite/server/Makefile.am        13 Oct 2006 13:27:05 -0000      1.6
+++ testsuite/server/Makefile.am        13 Oct 2006 14:28:59 -0000      1.7
@@ -60,13 +60,13 @@
 
 TEST_DRIVERS = server.exp
 
-check-DEJAGNU: site-update $(noinst_PROGRAMS)
+check-DEJAGNU: site-update $(check_PROGRAMS)
        @runtest=$(RUNTEST); \
        if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
            $$runtest $(RUNTESTFLAGS) $(TEST_DRIVERS); \
        else \
          echo "WARNING: could not find \`runtest'" 1>&2; \
-          for i in "$(noinst_PROGRAMS)"; do \
+          for i in "$(check_PROGRAMS)"; do \
            $(SHELL) $$i; \
          done; \
        fi
@@ -76,4 +76,4 @@
        @cp site.exp site.exp.bak
        @sed -e '/testcases/d' site.exp.bak > site.exp
        @echo "# This is a list of the pre-compiled testcases" >> site.exp
-       @echo "set testcases \"$(noinst_PROGRAMS)\"" >> site.exp
+       @echo "set testcases \"$(check_PROGRAMS)\"" >> site.exp

Index: testsuite/libbase/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/testsuite/libbase/Makefile.am,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- testsuite/libbase/Makefile.am       13 Oct 2006 13:27:05 -0000      1.17
+++ testsuite/libbase/Makefile.am       13 Oct 2006 14:28:59 -0000      1.18
@@ -90,13 +90,13 @@
 
 TEST_DRIVERS = libbase.exp
 
-check-DEJAGNU: site-update $(noinst_PROGRAMS)
+check-DEJAGNU: site-update $(check_PROGRAMS)
        @runtest=$(RUNTEST); \
        if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
            $$runtest $(RUNTESTFLAGS) $(TEST_DRIVERS); \
        else \
          echo "WARNING: could not find \`runtest'" 1>&2; \
-          for i in "$(noinst_PROGRAMS)"; do \
+          for i in "$(check_PROGRAMS)"; do \
            $(SHELL) $$i; \
          done; \
        fi
@@ -106,4 +106,4 @@
        @cp site.exp site.exp.bak
        @sed -e '/testcases/d' site.exp.bak > site.exp
        @echo "# This is a list of the pre-compiled testcases" >> site.exp
-       @echo "set testcases \"$(noinst_PROGRAMS)\"" >> site.exp
+       @echo "set testcases \"$(check_PROGRAMS)\"" >> site.exp




reply via email to

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