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: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1987-g634c9f9
Date: Fri, 16 May 2014 15:21:47 +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  634c9f98cc61c37069b4ccc57e958be105e5cec6 (commit)
      from  46367cd4cd40e8bb8d631a3c4089fab1557852d1 (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=634c9f98cc61c37069b4ccc57e958be105e5cec6


commit 634c9f98cc61c37069b4ccc57e958be105e5cec6
Author: Bastiaan Jacques <address@hidden>
Date:   Fri May 16 17:20:40 2014 +0200

    Add a test for #42375.

diff --git a/testsuite/actionscript.all/Date.as 
b/testsuite/actionscript.all/Date.as
index 19acf00..3b9488e 100644
--- a/testsuite/actionscript.all/Date.as
+++ b/testsuite/actionscript.all/Date.as
@@ -692,8 +692,20 @@ check_equals(typeof(foo), 'string');
  check_equals(foo.substring(0, 7), 'foo 950');
 #endif
 
+var o = new Date();
+o.setUTCMilliseconds(); // sets o's date to NaN
+
+ASSetPropFlags(o.__proto__, null, 0, 1);
+for (prop in o) {
+   if (prop.substr(0, 3) == "set" && prop != "setTime") {
+      trace("Testing " + prop + "(1)");
+      o[prop](1);
+      xcheck_equals(o.valueOf().toString(), "NaN");
+   }
+}
+
 #if OUTPUT_VERSION == 5
-totals(292);
+totals(307);
 #else
-totals (334);
+totals (349);
 #endif

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

Summary of changes:
 testsuite/actionscript.all/Date.as |   16 ++++++++++++++--
 1 files changed, 14 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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