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: Gabriele Giacone
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1966-gd77149c
Date: Thu, 01 May 2014 11:22: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  d77149c9acd07d5aeeb39c21b19313e103c5282f (commit)
      from  254b0bea74d38f06c3caad765fb419181204a4a6 (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=d77149c9acd07d5aeeb39c21b19313e103c5282f


commit d77149c9acd07d5aeeb39c21b19313e103c5282f
Author: Gabriele Giacone <address@hidden>
Date:   Thu May 1 13:20:08 2014 +0200

    Disable LocalConnection tests if SYSV semaphores functs are stubs.

diff --git a/configure.ac b/configure.ac
index 057e045..c095bad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2143,6 +2143,11 @@ if test x$ipc_key = xno; then
   )
 fi
 
+dnl If sysv semaphores functs are stubs (e.g. on Hurd),
+dnl disable LocalConnection tests
+AC_CHECK_FUNCS(semget, semget=yes)
+AM_CONDITIONAL(HAVE_SEMGET, test x${semget} = xyes)
+
 AC_CACHE_CHECK([for finite], ac_cv_finite,
  [AC_TRY_COMPILE([
    #include <math.h>
diff --git a/testsuite/actionscript.all/Makefile.am 
b/testsuite/actionscript.all/Makefile.am
index f5a552e..5bc4e46 100644
--- a/testsuite/actionscript.all/Makefile.am
+++ b/testsuite/actionscript.all/Makefile.am
@@ -128,7 +128,6 @@ ASTESTS =                   \
        XMLSocket.as    \
        rtmp.as                 \
        XMLNode.as              \
-       LocalConnection.as      \
        enumerate.as    \
        case.as                 \
        caseconv.as                     \
@@ -142,6 +141,10 @@ if BUILD_LIBSOUND
 ASTESTS += Sound.as
 endif
 
+if HAVE_SEMGET
+ASTESTS += LocalConnection.as
+endif
+
 if HAVE_PERL
 if ENABLE_HAXE
 HAXETESTS = \
diff --git a/testsuite/misc-haxe.all/classes.all/net/net.am 
b/testsuite/misc-haxe.all/classes.all/net/net.am
index bc10622..e0f8b42 100644
--- a/testsuite/misc-haxe.all/classes.all/net/net.am
+++ b/testsuite/misc-haxe.all/classes.all/net/net.am
@@ -35,7 +35,9 @@ NET_TESTS_V9 += net/IDynamicPropertyOutput_as.swf
 
 NET_TESTS_V9 += net/IDynamicPropertyWriter_as.swf
 
+if HAVE_SEMGET
 NET_TESTS_V6 += net/LocalConnection_as.swf
+endif
 
 NET_TESTS_V7 += net/NetConnection_as.swf
 
diff --git a/testsuite/misc-ming.all/Makefile.am 
b/testsuite/misc-ming.all/Makefile.am
index 6f1fcca..3453f2e 100644
--- a/testsuite/misc-ming.all/Makefile.am
+++ b/testsuite/misc-ming.all/Makefile.am
@@ -224,7 +224,6 @@ check_SCRIPTS = \
        EmbeddedFontTestRunner \
        TextSnapshotTest-Runner \
        XMLSocketTester \
-       LCTestRunner \
        timeline_var_test-Runner \
        place_object_testrunner \
        place_object_test2runner \
@@ -300,6 +299,9 @@ check_PROGRAMS += \
        $(NULL)
 endif
 
+if HAVE_SEMGET
+check_PROGRAMS += LCTestRunner
+endif
 
 # This is so check.as finds revno.h
 MAKESWF_FLAGS = -I$(top_builddir)
@@ -1554,7 +1556,6 @@ TEST_CASES = \
        consecutive_goto_frame_testrunner \
        multi_doactions_and_goto_frame_testrunner \
        XMLSocketTester \
-       LCTestRunner \
        DrawingApiTestRunner \
        TextSnapshotTest-Runner \
        reverse_execute_PlaceObject2_test1runner \
@@ -1636,6 +1637,10 @@ TEST_CASES += \
        $(NULL)
 endif
 
+if HAVE_SEMGET
+TEST_CASES += LCTestRunner
+endif
+
 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

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

Summary of changes:
 configure.ac                                   |    5 +++++
 testsuite/actionscript.all/Makefile.am         |    5 ++++-
 testsuite/misc-haxe.all/classes.all/net/net.am |    2 ++
 testsuite/misc-ming.all/Makefile.am            |    9 +++++++--
 4 files changed, 18 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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