New issue
Advanced search Search tips

Issue 662032 link

Starred by 1 user

Issue metadata

Status: WontFix
Owner: ----
Closed: Jan 2017
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 1
Type: Bug

Blocking:
issue 661577



Sign in to add a comment

Worker difference between turbofan and crankshaft

Project Member Reported by machenb...@chromium.org, Nov 3 2016

Issue description

This difference is flaky, 1 out of 3.

# Minimized test case:
if (this.Worker) {
  var a = `var b = new Worker('postMessage(42)');
     onmessage = function(parentMsg) {
       b.postMessage(parentMsg);
     };
  `;
  var b = new Worker(a);
  b.postMessage(9);
}

# Compared default with noturbo

# Flags of default:
--abort_on_stack_overflow --expose-gc --allow-natives-syntax --invoke-weak-callbacks --omit-quit --gc-interval=213 --random-seed -495505791
# Flags of noturbo:
--abort_on_stack_overflow --expose-gc --allow-natives-syntax --invoke-weak-callbacks --omit-quit --gc-interval=213 --random-seed -495505791 --turbo-filter=~

Difference:
Different total output lines: 0 vs. 1

### Start of configuration default:

### End of configuration default

### Start of configuration noturbo:
unnamed:87: Uncaught Worker is defunct because main thread is terminating

### End of configuration noturbo


 
Cc: mvstan...@chromium.org
Status: Available (was: Untriaged)
Labels: -Restrict-View-Google v8-foozzie-failure
Status: WontFix (was: Available)
Workers are mocked out. There's no plan currently to test those.

Sign in to add a comment