Changeset 154377 in webkit


Ignore:
Timestamp:
Aug 20, 2013 4:52:50 PM (11 years ago)
Author:
fpizlo@apple.com
Message:

fast/js/regress/emscripten-cube2hash is failing on all the Mac bots
https://bugs.webkit.org/show_bug.cgi?id=120083

Unreviewed.

Fixed the test to work in web mode and removed the failure expectation.

  • fast/js/regress/script-tests/emscripten-cube2hash.js:

(else.Module.string_appeared_here):

  • platform/mac/TestExpectations:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r154376 r154377  
     12013-08-20  Filip Pizlo  <fpizlo@apple.com>
     2
     3        fast/js/regress/emscripten-cube2hash is failing on all the Mac bots
     4        https://bugs.webkit.org/show_bug.cgi?id=120083
     5
     6        Unreviewed.
     7       
     8        Fixed the test to work in web mode and removed the failure expectation.
     9
     10        * fast/js/regress/script-tests/emscripten-cube2hash.js:
     11        (else.Module.string_appeared_here):
     12        * platform/mac/TestExpectations:
     13
    1142013-08-20  Filip Pizlo  <fpizlo@apple.com>
    215
  • trunk/LayoutTests/fast/js/regress/script-tests/emscripten-cube2hash.js

    r154344 r154377  
    102102  }
    103103  if (ENVIRONMENT_IS_WEB) {
    104     Module['print'] = function(x) {
    105       console.log(x);
     104    Module['print'] = function() {
     105      for (var i = 0; i < arguments.length; ++i) {
     106          if (i)
     107              JSRegress_outputBuffer += " ";
     108          JSRegress_outputBuffer += arguments[i];
     109      }
     110      JSRegress_outputBuffer += "\n";     
    106111    };
    107112    Module['printErr'] = function(x) {
     
    84978502  args = args || [];
    84988503  if (ENVIRONMENT_IS_WEB && preloadStartTime !== null) {
    8499     Module.printErr('preload time: ' + (Date.now() - preloadStartTime) + ' ms');
     8504    //Module.printErr('preload time: ' + (Date.now() - preloadStartTime) + ' ms');
    85008505  }
    85018506  ensureInitRuntime();
  • trunk/LayoutTests/platform/mac/TestExpectations

    r154357 r154377  
    13141314
    13151315webkit.org/b/120086 http/tests/security/cross-frame-access-getOwnPropertyDescriptor.html [ Failure ]
    1316 
    1317 webkit.org/b/120083 fast/js/regress/emscripten-cube2hash.html [ Failure ]
Note: See TracChangeset for help on using the changeset viewer.