cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

union-bad-discriminator.json (535B)


      1# we require the discriminator to be a string naming a base-type member
      2# this tests the old syntax for anonymous unions before we added alternates
      3{ 'enum': 'TestEnum',
      4  'data': [ 'value1', 'value2' ] }
      5{ 'struct': 'TestBase',
      6  'data': { 'enum1': 'TestEnum', 'kind': 'str' } }
      7{ 'struct': 'TestTypeA',
      8  'data': { 'string': 'str' } }
      9{ 'struct': 'TestTypeB',
     10  'data': { 'integer': 'int' } }
     11{ 'union': 'TestUnion',
     12  'base': 'TestBase',
     13  'discriminator': {},
     14  'data': { 'kind1': 'TestTypeA',
     15            'kind2': 'TestTypeB' } }