mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
C, enable tests of anon entities
This commit is contained in:
parent
ddf48f595d
commit
4dad6d6262
@ -423,12 +423,11 @@ def test_enum_definitions():
|
|||||||
|
|
||||||
|
|
||||||
def test_anon_definitions():
|
def test_anon_definitions():
|
||||||
return # TODO
|
check('struct', '@a', {1: "@a"}, asTextOutput='struct [anonymous]')
|
||||||
check('class', '@a', {3: "Ut1_a"})
|
check('union', '@a', {1: "@a"}, asTextOutput='union [anonymous]')
|
||||||
check('union', '@a', {3: "Ut1_a"})
|
check('enum', '@a', {1: "@a"}, asTextOutput='enum [anonymous]')
|
||||||
check('enum', '@a', {3: "Ut1_a"})
|
check('struct', '@1', {1: "@1"}, asTextOutput='struct [anonymous]')
|
||||||
check('class', '@1', {3: "Ut1_1"})
|
check('struct', '@a.A', {1: "@a.A"}, asTextOutput='struct [anonymous].A')
|
||||||
check('class', '@a::A', {3: "NUt1_a1AE"})
|
|
||||||
|
|
||||||
|
|
||||||
def test_initializers():
|
def test_initializers():
|
||||||
|
Loading…
Reference in New Issue
Block a user