Commit cbad7a88 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 4bcbfb16
...@@ -216,6 +216,18 @@ def test_AllStructs(): ...@@ -216,6 +216,18 @@ def test_AllStructs():
T([4], B(3), B())), T([4], B(3), B())),
T([3], # T3/ T([3], # T3/
T([], B(1)), # nsplit=1,(0,1)
T([4], B(3), B())),
T([3], # nsplit=1,(1,0)
T([0], B(), B(1)),
T([], B(3))),
T([3],
T([1], B(), B(1)),
T([], B(3))),
T([3],
T([2], B(1), B()),
T([], B(3))),
T([3], # nsplit=1,(1,1)
T([0], B(), B(1)), T([0], B(), B(1)),
T([4], B(3), B())), T([4], B(3), B())),
T([3], T([3],
...@@ -237,8 +249,6 @@ def test_AllStructs(): ...@@ -237,8 +249,6 @@ def test_AllStructs():
T([4], T([4],
T([3], B(1), B()), T([3], B(1), B()),
T([], B())), T([], B())),
# ... XXX continue
] ]
return return
......
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