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: Petter Reinholdtsen
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1914-g32a6083
Date: Wed, 23 Apr 2014 11:27:54 +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  32a6083209e763fddb2ac2774748481092c38654 (commit)
      from  a0a5f545b7cbf500c28b484a22505f1c3ec37f52 (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=32a6083209e763fddb2ac2774748481092c38654


commit 32a6083209e763fddb2ac2774748481092c38654
Author: Petter Reinholdtsen <address@hidden>
Date:   Wed Apr 23 13:16:47 2014 +0200

    Add missing return values to main() function.

diff --git a/testsuite/libbase.all/IntTypesTest.cpp 
b/testsuite/libbase.all/IntTypesTest.cpp
index 3f23166..54536fa 100644
--- a/testsuite/libbase.all/IntTypesTest.cpp
+++ b/testsuite/libbase.all/IntTypesTest.cpp
@@ -43,5 +43,6 @@ main(int /*argc*/, char** /*argv*/)
        check_equals (sizeof(boost::int32_t), 4);
        check_equals (sizeof(boost::int64_t), 8);
 
+       return 0;
 }
 
diff --git a/testsuite/libbase.all/Point2dTest.cpp 
b/testsuite/libbase.all/Point2dTest.cpp
index 819d434..5308e2d 100644
--- a/testsuite/libbase.all/Point2dTest.cpp
+++ b/testsuite/libbase.all/Point2dTest.cpp
@@ -67,6 +67,7 @@ main(int /*argc*/, char** /*argv*/)
     boost::int32_t  dist = 0;
     dist = p1.distance(p2);
     check_equals(dist, 0x8000000);
+    return 0;
 }
 
 
diff --git a/testsuite/libbase.all/Range2dTest.cpp 
b/testsuite/libbase.all/Range2dTest.cpp
index b3bc53a..71e2fc6 100644
--- a/testsuite/libbase.all/Range2dTest.cpp
+++ b/testsuite/libbase.all/Range2dTest.cpp
@@ -333,6 +333,6 @@ main(int /*argc*/, char** /*argv*/)
        check( ! fIntRange1.contains(Range2d<int>(8, 8, 10, 11)) );
        check( ! fIntRange1.contains(Range2d<int>(8, 8, 11, 11)) );
        
-
+       return 0;
 }
 
diff --git a/testsuite/libbase.all/RcTest.cpp b/testsuite/libbase.all/RcTest.cpp
index 19ec4ca..4c57f42 100644
--- a/testsuite/libbase.all/RcTest.cpp
+++ b/testsuite/libbase.all/RcTest.cpp
@@ -378,5 +378,6 @@ main (int /*argc*/, char** /*argv*/) {
         }
 
     }
+    return 0;
 }
 
diff --git a/testsuite/libbase.all/URLTest.cpp 
b/testsuite/libbase.all/URLTest.cpp
index 105bb34..593387e 100644
--- a/testsuite/libbase.all/URLTest.cpp
+++ b/testsuite/libbase.all/URLTest.cpp
@@ -340,5 +340,7 @@ main(int /*argc*/, char** /*argv*/)
     check_equals (v66.anchor(), "");
     
        // TODO: Samba paths
+
+    return 0;
 }
 
diff --git a/testsuite/libbase.all/memtest.cpp 
b/testsuite/libbase.all/memtest.cpp
index 4563da4..c864aab 100644
--- a/testsuite/libbase.all/memtest.cpp
+++ b/testsuite/libbase.all/memtest.cpp
@@ -174,6 +174,7 @@ main (int /*argc*/, char** /*argv*/) {
 #else
     runtest.untested("No support for mallinfo()");
 #endif // end of HAVE_MALLINFO
+    return 0;
 }
 
 // Allocate memory and forget to clean it up.
diff --git a/testsuite/libbase.all/snappingrangetest.cpp 
b/testsuite/libbase.all/snappingrangetest.cpp
index d062331..45ef354 100644
--- a/testsuite/libbase.all/snappingrangetest.cpp
+++ b/testsuite/libbase.all/snappingrangetest.cpp
@@ -225,5 +225,6 @@ main(int /*argc*/, char** /*argv*/)
        finSnap4.add(Range2d<int>(40,273, 108,287));
 
        check(finSnap3.contains(finSnap4));
+       return 0;
 }
 
diff --git a/testsuite/libbase.all/string_tableTest.cpp 
b/testsuite/libbase.all/string_tableTest.cpp
index b517a17..263ea27 100644
--- a/testsuite/libbase.all/string_tableTest.cpp
+++ b/testsuite/libbase.all/string_tableTest.cpp
@@ -57,5 +57,5 @@ main(int /*argc*/, char** /*argv*/)
     check(!equal(st, st.find("AbAb"), st.find("abaB"), false));
     check(!equal(st, st.find("AbAb"), st.find("ABAB"), false));
 
-
+    return 0;
 }

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

Summary of changes:
 testsuite/libbase.all/IntTypesTest.cpp      |    1 +
 testsuite/libbase.all/Point2dTest.cpp       |    1 +
 testsuite/libbase.all/Range2dTest.cpp       |    2 +-
 testsuite/libbase.all/RcTest.cpp            |    1 +
 testsuite/libbase.all/URLTest.cpp           |    2 ++
 testsuite/libbase.all/memtest.cpp           |    1 +
 testsuite/libbase.all/snappingrangetest.cpp |    1 +
 testsuite/libbase.all/string_tableTest.cpp  |    2 +-
 8 files changed, 9 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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