gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-482-g7e0e201
Date: Wed, 13 Jul 2011 16:41:55 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  7e0e201c44476f7df9875b7c05008a37c5562984 (commit)
      from  7e108e6d2739edc6a9adf0b8c2bfc29762c7715f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=7e0e201c44476f7df9875b7c05008a37c5562984


commit 7e0e201c44476f7df9875b7c05008a37c5562984
Author: Sandro Santilli <address@hidden>
Date:   Wed Jul 13 18:41:35 2011 +0200

    Put INITACTION tests in their own dir

diff --git a/configure.ac b/configure.ac
index dc1f910..0668c9f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2748,6 +2748,7 @@ testsuite/swfdec/Makefile
 testsuite/misc-ming.all/Makefile
 testsuite/misc-ming.all/action_order/Makefile
 testsuite/misc-ming.all/displaylist_depths/Makefile
+testsuite/misc-ming.all/init_action/Makefile
 testsuite/misc-ming.all/loop/Makefile
 testsuite/misc-ming.all/loading/Makefile
 testsuite/misc-ming.all/register_class/Makefile
diff --git a/testsuite/misc-ming.all/Makefile.am 
b/testsuite/misc-ming.all/Makefile.am
index 7985892..aea4462 100644
--- a/testsuite/misc-ming.all/Makefile.am
+++ b/testsuite/misc-ming.all/Makefile.am
@@ -31,7 +31,8 @@ CLEANFILES =  \
 
 DISTCLEANFILES = XMLSocketTester
 
-SUBDIRS = loop loading displaylist_depths action_order register_class
+SUBDIRS = loop loading displaylist_depths action_order register_class \
+          init_action
 
 EXTRA_DIST = \
        DragDropTest.as \
@@ -193,13 +194,6 @@ check_PROGRAMS += \
        $(NULL)
 endif
 
-if MING_SUPPORTS_INIT_ACTIONS
-check_PROGRAMS += \
-       init_action_test \
-       InitActionTest2 \
-       $(NULL)
-endif
-
 if MING_SUPPORTS_REPLACE_TAG
 check_PROGRAMS += \
        replace_shapes1test \
@@ -263,8 +257,6 @@ check_SCRIPTS = \
        runtime_vm_stack_testrunner \
        new_child_in_unload_testrunner \
        instanceNameTestRunner \
-       init_action_testrunner \
-       InitActionTest2Runner \
        $(NULL)
 
 if MAKESWF_SUPPORTS_PREBUILT_CLIPS
@@ -296,12 +288,6 @@ check_SCRIPTS += \
        $(NULL) 
 endif
 
-if MING_SUPPORTS_INIT_ACTIONS
-check_SCRIPTS += \
-       InitActionTest2Runner \
-       $(NULL)
-endif
-
 if MING_SUPPORTS_REPLACE_TAG
 check_SCRIPTS += \
        PlaceObject2TestRunner \
@@ -1356,30 +1342,6 @@ ButtonPropertiesTestRunner_CXXFLAGS = \
        -DTGTDIR='"$(abs_builddir)"' \
        $(NULL)
 
-InitActionTest2_SOURCES =      \
-       InitActionTest2.c       \
-       $(NULL)
-InitActionTest2_LDADD = libgnashmingutils.la
-
-InitActionTest2.swf: InitActionTest2
-       ./InitActionTest2 $(abs_mediadir)
-
-InitActionTest2Runner: $(srcdir)/../generic-testrunner.sh InitActionTest2.swf
-       sh $(srcdir)/../generic-testrunner.sh $(top_builddir) 
InitActionTest2.swf > $@
-       chmod 755 $@
-
-init_action_test_SOURCES =     \
-       init_action_test.c      \
-       $(NULL)
-init_action_test_LDADD = libgnashmingutils.la
-
-init_action_test.swf: init_action_test
-       ./init_action_test $(abs_mediadir)
-
-init_action_testrunner: $(srcdir)/../generic-testrunner.sh init_action_test.swf
-       sh $(srcdir)/../generic-testrunner.sh $(top_builddir) 
init_action_test.swf > $@
-       chmod 755 $@
-
 intervalTest.swf: $(srcdir)/../media/green.swf Dejagnu.swf intervalTest.as 
        $(MAKESWF) $(MAKESWF_FLAGS) -o $@ Dejagnu.swf $(srcdir)/intervalTest.as
 intervalTestRunner_SOURCES = \
@@ -1742,13 +1704,6 @@ TEST_CASES += rtmpytest-runner
 endif
 endif
 
-if MING_SUPPORTS_INIT_ACTIONS
-TEST_CASES += \
-       init_action_testrunner \
-       InitActionTest2Runner \
-       $(NULL)
-endif
-
 if MING_SUPPORTS_REPLACE_TAG
 TEST_CASES += \
        PlaceObject2TestRunner \
diff --git a/testsuite/misc-ming.all/InitActionTest2.c 
b/testsuite/misc-ming.all/init_action/InitActionTest2.c
similarity index 100%
rename from testsuite/misc-ming.all/InitActionTest2.c
rename to testsuite/misc-ming.all/init_action/InitActionTest2.c
diff --git a/testsuite/misc-ming.all/init_action/Makefile.am 
b/testsuite/misc-ming.all/init_action/Makefile.am
new file mode 100644
index 0000000..085b058
--- /dev/null
+++ b/testsuite/misc-ming.all/init_action/Makefile.am
@@ -0,0 +1,134 @@
+## Process this file with automake to generate Makefile.in
+# 
+#   Copyright (C) 2011 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+AUTOMAKE_OPTIONS = dejagnu -Wno-portability
+
+abs_top_builddir=$(shell cd $(top_builddir); pwd)
+abs_builddir=$(shell cd $(top_builddir)/testsuite/misc-ming.all/init_action; 
pwd)
+abs_mediadir = $(shell cd $(srcdir)/../../media; pwd)
+
+EXTRA_DIST = \
+       $(NULL)
+
+AM_CPPFLAGS = \
+       -I$(top_srcdir)/libbase \
+       -I$(top_srcdir)/libmedia \
+       -I$(top_srcdir)/libsound \
+       -I$(top_srcdir)/librender \
+       -I$(top_srcdir)/libcore  \
+       -I$(top_srcdir)/libcore/swf  \
+       -I$(top_srcdir)/libcore/parser  \
+       -I$(top_srcdir)/libcore/vm \
+       -I$(top_srcdir)/libcore/asobj \
+       -I$(top_srcdir)/testsuite \
+       -I$(top_srcdir)/testsuite/misc-ming.all \
+       $(MING_CFLAGS) \
+       $(OPENGL_CFLAGS) \
+       $(BOOST_CFLAGS) \
+       -DMING_VERSION_CODE=$(MING_VERSION_CODE) \
+       $(NULL)
+
+AM_LDFLAGS = \
+       $(MING_LIBS) \
+       $(OPENGL_LIBS) \
+       $(GIF_LIBS) \
+       $(top_builddir)/libbase/libgnashbase.la \
+       $(top_builddir)/librender/libgnashrender.la \
+       $(top_builddir)/libcore/libgnashcore.la \
+       $(NULL)
+
+if MING_SUPPORTS_INIT_ACTIONS
+
+check_PROGRAMS = \
+       init_action_test \
+       InitActionTest2 \
+       $(NULL)
+
+check_SCRIPTS = \
+       init_action_testrunner \
+       InitActionTest2Runner \
+       $(NULL)
+
+init_action_test_SOURCES =     \
+       init_action_test.c      \
+       $(NULL)
+init_action_test_LDADD = ../libgnashmingutils.la
+
+init_action_test.swf: init_action_test
+       ./init_action_test $(abs_mediadir)
+
+init_action_testrunner: $(srcdir)/../../generic-testrunner.sh 
init_action_test.swf
+       sh $(srcdir)/../../generic-testrunner.sh $(top_builddir) 
init_action_test.swf > $@
+       chmod 755 $@
+
+InitActionTest2_SOURCES =      \
+       InitActionTest2.c       \
+       $(NULL)
+InitActionTest2_LDADD = ../libgnashmingutils.la
+
+InitActionTest2.swf: InitActionTest2
+       ./InitActionTest2 $(abs_mediadir)
+
+InitActionTest2Runner: $(srcdir)/../../generic-testrunner.sh 
InitActionTest2.swf
+       sh $(srcdir)/../../generic-testrunner.sh $(top_builddir) 
InitActionTest2.swf > $@
+       chmod 755 $@
+
+
+TEST_CASES = \
+       init_action_testrunner \
+       InitActionTest2Runner \
+       $(NULL)
+
+
+clean-local: 
+       -rm *.swf *.pp *unner
+
+CLEANFILES =  \
+       gnash-dbg.log \
+       site.exp.bak \
+       testrun.sum \
+       testrun.log
+
+
+TEST_DRIVERS = ../../simple.exp
+
+TEST_ENV = GNASH_GC_TRIGGER_THRESHOLD=0
+TEST_ENV += GNASHRC=../../gnashrc
+TEST_ENV += 
GST_INSTALL_PLUGINS_HELPER=$(top_srcdir)/testsuite/gst_install_plugins_helper.sh
+
+
+check-DEJAGNU: site-update $(check_PROGRAMS)
+       runtest=$(RUNTEST); \
+       if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
+           $(TEST_ENV) $$runtest $(RUNTESTFLAGS) $(TEST_DRIVERS); true; \
+       else \
+         echo "WARNING: could not find \`runtest'" 1>&2; \
+          for i in "$(TEST_CASES)"; do \
+           $(TEST_ENV) $(SHELL) $$i; \
+         done; \
+       fi
+
+site-update: site.exp
+       @rm -fr site.exp.bak
+       @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 \"$(TEST_CASES)\"" >> site.exp
+
+endif
+# MING_SUPPORTS_INIT_ACTIONS
diff --git a/testsuite/misc-ming.all/init_action_test.c 
b/testsuite/misc-ming.all/init_action/init_action_test.c
similarity index 100%
rename from testsuite/misc-ming.all/init_action_test.c
rename to testsuite/misc-ming.all/init_action/init_action_test.c

-----------------------------------------------------------------------

Summary of changes:
 configure.ac                                       |    1 +
 testsuite/misc-ming.all/Makefile.am                |   49 +--------
 .../{ => init_action}/InitActionTest2.c            |    0
 .../{register_class => init_action}/Makefile.am    |  124 +++++---------------
 .../{ => init_action}/init_action_test.c           |    0
 5 files changed, 34 insertions(+), 140 deletions(-)
 rename testsuite/misc-ming.all/{ => init_action}/InitActionTest2.c (100%)
 copy testsuite/misc-ming.all/{register_class => init_action}/Makefile.am (53%)
 rename testsuite/misc-ming.all/{ => init_action}/init_action_test.c (100%)


hooks/post-receive
-- 
Gnash



reply via email to

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