qapi: Drop redundant alternate-good test
The alternate-good.json test was already covered by qapi-schema-test.json. As future commits will be tweaking how alternates are laid out, removing the duplicate test now reduces churn. Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1444710158-8723-4-git-send-email-eblake@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
		
							parent
							
								
									7618b91ff8
								
							
						
					
					
						commit
						baabb84c5b
					
				| 
						 | 
				
			
			@ -230,7 +230,6 @@ qapi-schema += alternate-clash.json
 | 
			
		|||
qapi-schema += alternate-conflict-dict.json
 | 
			
		||||
qapi-schema += alternate-conflict-string.json
 | 
			
		||||
qapi-schema += alternate-empty.json
 | 
			
		||||
qapi-schema += alternate-good.json
 | 
			
		||||
qapi-schema += alternate-nested.json
 | 
			
		||||
qapi-schema += alternate-unknown.json
 | 
			
		||||
qapi-schema += args-alternate.json
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
0
 | 
			
		||||
| 
						 | 
				
			
			@ -1,9 +0,0 @@
 | 
			
		|||
# Working example of alternate
 | 
			
		||||
{ 'struct': 'Data',
 | 
			
		||||
  'data': { '*number': 'int', '*name': 'str' } }
 | 
			
		||||
{ 'enum': 'Enum',
 | 
			
		||||
  'data': [ 'hello', 'world' ] }
 | 
			
		||||
{ 'alternate': 'Alt',
 | 
			
		||||
  'data': { 'value': 'int',
 | 
			
		||||
            'string': 'Enum',
 | 
			
		||||
            'struct': 'Data' } }
 | 
			
		||||
| 
						 | 
				
			
			@ -1,10 +0,0 @@
 | 
			
		|||
object :empty
 | 
			
		||||
alternate Alt
 | 
			
		||||
    case value: int
 | 
			
		||||
    case string: Enum
 | 
			
		||||
    case struct: Data
 | 
			
		||||
enum AltKind ['value', 'string', 'struct']
 | 
			
		||||
object Data
 | 
			
		||||
    member number: int optional=True
 | 
			
		||||
    member name: str optional=True
 | 
			
		||||
enum Enum ['hello', 'world']
 | 
			
		||||
		Loading…
	
		Reference in New Issue