Commit 6a8de153 authored by adamk's avatar adamk Committed by Commit bot

Several mjsunit cleanups

  - Move default parameters tests from harmony/ to es6/ and remove
    non-existent --harmony-default-parameters flag.
  - Remove some non-existent tests from mjsunit.status

Review URL: https://codereview.chromium.org/1812313002

Cr-Commit-Position: refs/heads/master@{#34908}
parent e7f7d2c9
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// Flags: --expose-debug-as debug --harmony-default-parameters // Flags: --expose-debug-as debug
Debug = debug.Debug Debug = debug.Debug
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// Flags: --expose-debug-as debug --harmony-default-parameters // Flags: --expose-debug-as debug
// Get the Debug object exposed from the debug context global object. // Get the Debug object exposed from the debug context global object.
Debug = debug.Debug Debug = debug.Debug
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// Flags: --harmony-default-parameters
(function TestDefaults() { (function TestDefaults() {
function f1(x = 1) { return x } function f1(x = 1) { return x }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// Flags: --harmony-default-parameters --min-preparse-length=0 // Flags: --min-preparse-length=0
function borked(a = [], b = {}, c) {} function borked(a = [], b = {}, c) {}
borked(); borked();
...@@ -259,10 +259,6 @@ ...@@ -259,10 +259,6 @@
# prermanently enabled. # prermanently enabled.
'call-counts': [SKIP], 'call-counts': [SKIP],
# BUG(chromium:508074). Remove this once the issue is fixed.
'harmony/arrow-rest-params': [PASS, NO_VARIANTS],
'harmony/rest-params': [PASS, ['no_snap == True', NO_VARIANTS]],
# Slow tests. # Slow tests.
'copy-on-write-assert': [PASS, SLOW], 'copy-on-write-assert': [PASS, SLOW],
'debug-scopes': [PASS, SLOW], 'debug-scopes': [PASS, SLOW],
...@@ -468,7 +464,6 @@ ...@@ -468,7 +464,6 @@
'packed-elements': [SKIP], 'packed-elements': [SKIP],
'regexp-global': [SKIP], 'regexp-global': [SKIP],
'compiler/alloc-numbers': [SKIP], 'compiler/alloc-numbers': [SKIP],
'harmony/symbols': [SKIP],
'math-floor-of-div': [PASS, TIMEOUT], 'math-floor-of-div': [PASS, TIMEOUT],
'math-floor-of-div-nosudiv': [PASS, TIMEOUT], 'math-floor-of-div-nosudiv': [PASS, TIMEOUT],
'unicodelctest': [PASS, TIMEOUT], 'unicodelctest': [PASS, TIMEOUT],
...@@ -672,7 +667,6 @@ ...@@ -672,7 +667,6 @@
'debug-liveedit-stack-padding': [SKIP], 'debug-liveedit-stack-padding': [SKIP],
'debug-liveedit-restart-frame': [SKIP], 'debug-liveedit-restart-frame': [SKIP],
'debug-liveedit-double-call': [SKIP], 'debug-liveedit-double-call': [SKIP],
'harmony/generators-debug-liveedit': [SKIP],
# NaCl builds have problems with this test since Pepper_28. # NaCl builds have problems with this test since Pepper_28.
# V8 Issue 2786 # V8 Issue 2786
...@@ -709,7 +703,6 @@ ...@@ -709,7 +703,6 @@
# Crashes. # Crashes.
'harmony/private': [SKIP], 'harmony/private': [SKIP],
'harmony/symbols': [SKIP],
}], # 'arch == nacl_ia32 or arch == nacl_x64' }], # 'arch == nacl_ia32 or arch == nacl_x64'
############################################################################## ##############################################################################
...@@ -849,7 +842,6 @@ ...@@ -849,7 +842,6 @@
'compiler/osr-nested': [SKIP], 'compiler/osr-nested': [SKIP],
'debug-*': [SKIP], 'debug-*': [SKIP],
'es6/debug-*': [SKIP], 'es6/debug-*': [SKIP],
'harmony/debug-stepin-default-parameters': [SKIP],
'ignition/debug-break': [SKIP], 'ignition/debug-break': [SKIP],
'ignition/debug-break-on-stack': [SKIP], 'ignition/debug-break-on-stack': [SKIP],
'ignition/debug-scope-on-return': [SKIP], 'ignition/debug-scope-on-return': [SKIP],
......
// Copyright 2015 the V8 project authors. All rights reserved. // Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
//
// Flags: --harmony-default-parameters
(function() { (function() {
var x = {}; var x = {};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment