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

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

Issue 6580056: Make global NaN, Infinity and undefined read only. (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 18 matching lines...) Expand all
29 def UNIMPLEMENTED = PASS || FAIL 29 def UNIMPLEMENTED = PASS || FAIL
30 def FAIL_OK = FAIL, OKAY 30 def FAIL_OK = FAIL, OKAY
31 31
32 32
33 ############################################################################## 33 ##############################################################################
34 # Non UTF8 characters in test files. 34 # Non UTF8 characters in test files.
35 chapter10/10.4/10.4.2/10.4.2-3-c-2-s: FAIL_OK 35 chapter10/10.4/10.4.2/10.4.2-3-c-2-s: FAIL_OK
36 chapter10/10.4/10.4.2/10.4.2-3-c-1-s: FAIL_OK 36 chapter10/10.4/10.4.2/10.4.2-3-c-1-s: FAIL_OK
37 chapter10/10.4/10.4.2/10.4.2-2-c-1: FAIL_OK 37 chapter10/10.4/10.4.2/10.4.2-2-c-1: FAIL_OK
38 38
39 # We do not implement the error chekcs specified in the production rules
40 # of 11.1.5 (Object initializer).
41 # We are compatible with Safari and Firefox.
42 chapter11/11.1/11.1.5: UNIMPLEMENTED
43
44 # We do not have a global object called 'global' as required by tests.
45 chapter15/15.1: FAIL_OK
46
47 # NaN is writable. We are compatible with JSC.
Martin Maly 2011/02/25 02:26:03 Both Safari and Firefox have Nan, Infinity and und
48 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-178: FAIL_OK
49 # Infinity is writable. We are compatible with JSC.
50 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-179: FAIL_OK
51 # undefined is writable. We are compatible with JSC.
52 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-180: FAIL_OK
53
54 # Our Function object has an "arguments" property which is used as a 39 # Our Function object has an "arguments" property which is used as a
55 # non-property in the test. 40 # non-property in the test.
56 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-183: FAIL_OK 41 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-183: FAIL_OK
57 42
58 # Our Function object has a "caller" property which is used as a 43 # Our Function object has a "caller" property which is used as a
59 # non-property in in the test. 44 # non-property in in the test.
60 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-184: FAIL_OK 45 chapter15/15.2/15.2.3/15.2.3.3/15.2.3.3-4-184: FAIL_OK
61 46
62 # Our function object has a name property which is used as a 47 # Our function object has a name property which is used as a
63 # non-property in the test. 48 # non-property in the test.
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 chapter15/15.3/15.3.2/15.3.2.1/15.3.2.1-11-6-s: FAIL 418 chapter15/15.3/15.3.2/15.3.2.1/15.3.2.1-11-6-s: FAIL
434 419
435 # Array.prototype.reduce - null passed as thisValue to strict callbackfn 420 # Array.prototype.reduce - null passed as thisValue to strict callbackfn
436 # Invalid test case: http://es5conform.codeplex.com/workitem/29085 421 # Invalid test case: http://es5conform.codeplex.com/workitem/29085
437 chapter15/15.4/15.4.4/15.4.4.21/15.4.4.21-9-c-ii-4-s: FAIL 422 chapter15/15.4/15.4.4/15.4.4.21/15.4.4.21-9-c-ii-4-s: FAIL
438 423
439 [ $arch == mips ] 424 [ $arch == mips ]
440 425
441 # Skip all tests on MIPS. 426 # Skip all tests on MIPS.
442 *: SKIP 427 *: SKIP
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698