File tree Expand file tree Collapse file tree 6 files changed +1
-10
lines changed
com.oracle.graal.python.pegparser.test/src/com/oracle/graal/python/pegparser/test
com.oracle.graal.python.pegparser/src/com/oracle/graal/python/pegparser/scope
com.oracle.graal.python.test/src/tests/unittest_tags_bytecode_dsl Expand file tree Collapse file tree 6 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 4141
4242package com .oracle .graal .python .pegparser .test ;
4343
44- import org .junit .Ignore ;
4544import org .junit .Test ;
4645
47- @ Ignore // GR-62729
4846public class LambdaInFunctionTests extends ParserTestBase {
4947
5048 @ Test
Original file line number Diff line number Diff line change 4141
4242package com .oracle .graal .python .pegparser .test ;
4343
44- import org .junit .Ignore ;
4544import org .junit .Test ;
4645
4746public class YieldStatementTests extends ParserTestBase {
@@ -149,7 +148,6 @@ public void customIter01() throws Exception {
149148 }
150149
151150 @ Test
152- @ Ignore // GR-62729
153151 public void yield17 () throws Exception {
154152 checkScopeAndTree ("generator = type((lambda: (yield))())" );
155153 }
Original file line number Diff line number Diff line change @@ -645,7 +645,7 @@ public Void visit(ExprTy.Lambda node) {
645645 visitSequence (node .args .defaults );
646646 visitSequence (node .args .kwDefaults );
647647 }
648- enterBlock ("< lambda> " , ScopeType .Function , node );
648+ enterBlock ("lambda" , ScopeType .Function , node );
649649 try {
650650 if (node .args != null ) {
651651 node .args .accept (this );
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ test.test_funcattrs.FunctionPropertiesTest.test___closure__ @ linux-x86_64
1414test.test_funcattrs.FunctionPropertiesTest.test___code__ @ linux-x86_64
1515test.test_funcattrs.FunctionPropertiesTest.test___globals__ @ linux-x86_64
1616test.test_funcattrs.FunctionPropertiesTest.test___name__ @ linux-x86_64
17- test.test_funcattrs.FunctionPropertiesTest.test___qualname__ @ linux-x86_64
1817test.test_funcattrs.FunctionPropertiesTest.test_blank_func_defaults @ linux-x86_64
1918test.test_funcattrs.FunctionPropertiesTest.test_cell_new @ linux-x86_64
2019test.test_funcattrs.FunctionPropertiesTest.test_copying___code__ @ linux-x86_64
Original file line number Diff line number Diff line change @@ -92,19 +92,16 @@ test.test_inspect.test_inspect.TestGetattrStatic.test_no_dict_no_slots @ linux-x
9292test.test_inspect.test_inspect.TestGetattrStatic.test_no_dict_no_slots_instance_member @ linux-x86_64
9393test.test_inspect.test_inspect.TestGetattrStatic.test_property @ linux-x86_64
9494test.test_inspect.test_inspect.TestGetattrStatic.test_slots @ linux-x86_64
95- test.test_inspect.test_inspect.TestGetcallargsFunctions.test_keyword_only @ linux-x86_64
9695test.test_inspect.test_inspect.TestGetcallargsFunctions.test_multiple_features @ linux-x86_64
9796test.test_inspect.test_inspect.TestGetcallargsFunctions.test_plain @ linux-x86_64
9897test.test_inspect.test_inspect.TestGetcallargsFunctions.test_varargs @ linux-x86_64
9998test.test_inspect.test_inspect.TestGetcallargsFunctions.test_varkw @ linux-x86_64
10099test.test_inspect.test_inspect.TestGetcallargsFunctions.test_varkw_only @ linux-x86_64
101- test.test_inspect.test_inspect.TestGetcallargsMethods.test_keyword_only @ linux-x86_64
102100test.test_inspect.test_inspect.TestGetcallargsMethods.test_multiple_features @ linux-x86_64
103101test.test_inspect.test_inspect.TestGetcallargsMethods.test_plain @ linux-x86_64
104102test.test_inspect.test_inspect.TestGetcallargsMethods.test_varargs @ linux-x86_64
105103test.test_inspect.test_inspect.TestGetcallargsMethods.test_varkw @ linux-x86_64
106104test.test_inspect.test_inspect.TestGetcallargsMethods.test_varkw_only @ linux-x86_64
107- test.test_inspect.test_inspect.TestGetcallargsUnboundMethods.test_keyword_only @ linux-x86_64
108105test.test_inspect.test_inspect.TestGetcallargsUnboundMethods.test_multiple_features @ linux-x86_64
109106test.test_inspect.test_inspect.TestGetcallargsUnboundMethods.test_plain @ linux-x86_64
110107test.test_inspect.test_inspect.TestGetcallargsUnboundMethods.test_varargs @ linux-x86_64
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ test.test_reprlib.ReprTests.test_container @ linux-x86_64
99test.test_reprlib.ReprTests.test_descriptors @ linux-x86_64
1010test.test_reprlib.ReprTests.test_frozenset @ linux-x86_64
1111test.test_reprlib.ReprTests.test_instance @ linux-x86_64
12- test.test_reprlib.ReprTests.test_lambda @ linux-x86_64
1312test.test_reprlib.ReprTests.test_nesting @ linux-x86_64
1413test.test_reprlib.ReprTests.test_numbers @ linux-x86_64
1514test.test_reprlib.ReprTests.test_range @ linux-x86_64
You can’t perform that action at this time.
0 commit comments