Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: test/es5conform/es5conform.status

Issue 6515005: Strict mode delete. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 # simple assignment throws TypeError if LeftHandSide is a readonly property 340 # simple assignment throws TypeError if LeftHandSide is a readonly property
341 # in strict mode (Math.SQRT1_2) 341 # in strict mode (Math.SQRT1_2)
342 chapter11/11.13/11.13.1/11.13.1-4-25-s: FAIL 342 chapter11/11.13/11.13.1/11.13.1-4-25-s: FAIL
343 # simple assignment throws TypeError if LeftHandSide is a readonly property 343 # simple assignment throws TypeError if LeftHandSide is a readonly property
344 # in strict mode (Math.SQRT2) 344 # in strict mode (Math.SQRT2)
345 chapter11/11.13/11.13.1/11.13.1-4-26-s: FAIL 345 chapter11/11.13/11.13.1/11.13.1-4-26-s: FAIL
346 # simple assignment throws TypeError if LeftHandSide is a readonly property 346 # simple assignment throws TypeError if LeftHandSide is a readonly property
347 # in strict mode (Global.undefined) 347 # in strict mode (Global.undefined)
348 chapter11/11.13/11.13.1/11.13.1-4-27-s: FAIL 348 chapter11/11.13/11.13.1/11.13.1-4-27-s: FAIL
349 349
350 # delete operator throws TypeError when deleting a non-configurable data
351 # property in strict mode
352 chapter11/11.4/11.4.1/11.4.1-4.a-3-s: FAIL
353 # delete operator throws TypeError when when deleting a non-configurable 350 # delete operator throws TypeError when when deleting a non-configurable
354 # data property in strict mode (Global.NaN) 351 # data property in strict mode (Global.NaN)
355 chapter11/11.4/11.4.1/11.4.1-4.a-4-s: FAIL 352 # Invalid test case - "this" is not a global object within the test case.
356 # delete operator throws TypeError when deleting a non-configurable data 353 # (http://es5conform.codeplex.com/workitem/29151)
357 # property in strict mode (Math.LN2) 354 chapter11/11.4/11.4.1/11.4.1-4.a-4-s: FAIL_OK
358 chapter11/11.4/11.4.1/11.4.1-4.a-9-s: FAIL
359 355
360 # delete operator throws ReferenceError when deleting a direct reference 356 # delete operator throws ReferenceError when deleting a direct reference
361 # to a var in strict mode 357 # to a var in strict mode
358 # Invalid test case. Test expects ReferenceError instead of SyntaxError.
359 # http://es5conform.codeplex.com/workitem/29084
362 chapter11/11.4/11.4.1/11.4.1-5-1-s: FAIL 360 chapter11/11.4/11.4.1/11.4.1-5-1-s: FAIL
363 # delete operator throws ReferenceError when deleting a direct reference 361 # delete operator throws ReferenceError when deleting a direct reference
364 # to a function argument in strict mode 362 # to a function argument in strict mode
363 # Invalid test case. Test expects ReferenceError instead of SyntaxError.
364 # http://es5conform.codeplex.com/workitem/29084
365 chapter11/11.4/11.4.1/11.4.1-5-2-s: FAIL 365 chapter11/11.4/11.4.1/11.4.1-5-2-s: FAIL
366 # delete operator throws ReferenceError when deleting a direct reference 366 # delete operator throws ReferenceError when deleting a direct reference
367 # to a function name in strict mode 367 # to a function name in strict mode
368 # Invalid test case. Test expects ReferenceError instead of SyntaxError.
369 # http://es5conform.codeplex.com/workitem/29084
368 chapter11/11.4/11.4.1/11.4.1-5-3-s: FAIL 370 chapter11/11.4/11.4.1/11.4.1-5-3-s: FAIL
369 # delete operator throws SyntaxError when deleting a direct reference
370 # to a function argument(object) in strict mode
371 chapter11/11.4/11.4.1/11.4.1-5-4-s: FAIL
372 371
373 # eval - a function declaring a var named 'eval' throws EvalError in strict mode 372 # eval - a function declaring a var named 'eval' throws EvalError in strict mode
374 # Invalid test case. SyntaxError should be expected instead of EvalError. 373 # Invalid test case. SyntaxError should be expected instead of EvalError.
375 chapter12/12.2/12.2.1/12.2.1-1-s: FAIL 374 chapter12/12.2/12.2.1/12.2.1-1-s: FAIL
376 # eval - a function assigning into 'eval' throws EvalError in strict mode 375 # eval - a function assigning into 'eval' throws EvalError in strict mode
377 # Invalid test case. SyntaxError should be expected instead of EvalError. 376 # Invalid test case. SyntaxError should be expected instead of EvalError.
378 chapter12/12.2/12.2.1/12.2.1-2-s: FAIL 377 chapter12/12.2/12.2.1/12.2.1-2-s: FAIL
379 # eval - a function expr declaring a var named 'eval' throws EvalError 378 # eval - a function expr declaring a var named 'eval' throws EvalError
380 # in strict mode 379 # in strict mode
381 # Invalid test case. SyntaxError should be expected instead of EvalError. 380 # Invalid test case. SyntaxError should be expected instead of EvalError.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-5-1-s: FAIL 482 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-5-1-s: FAIL
484 # Array.prototype.filter - thisArg not passed to strict callbackfn 483 # Array.prototype.filter - thisArg not passed to strict callbackfn
485 chapter15/15.4/15.4.4/15.4.4.20/15.4.4.20-5-1-s: FAIL 484 chapter15/15.4/15.4.4/15.4.4.20/15.4.4.20-5-1-s: FAIL
486 # Array.prototype.reduce - null passed as thisValue to strict callbackfn 485 # Array.prototype.reduce - null passed as thisValue to strict callbackfn
487 chapter15/15.4/15.4.4/15.4.4.21/15.4.4.21-9-c-ii-4-s: FAIL 486 chapter15/15.4/15.4.4/15.4.4.21/15.4.4.21-9-c-ii-4-s: FAIL
488 487
489 [ $arch == mips ] 488 [ $arch == mips ]
490 489
491 # Skip all tests on MIPS. 490 # Skip all tests on MIPS.
492 *: SKIP 491 *: SKIP
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698