14 lines
		
	
	
		
			355 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			355 B
		
	
	
	
		
			Python
		
	
	
	
# Regression test for Issue 229: problem encoding message that has
 | 
						|
# multiple oneof fields
 | 
						|
Import('env')
 | 
						|
 | 
						|
env.NanopbProto('multiple_oneof')
 | 
						|
 | 
						|
p = env.Program(["multiple_oneof.c",
 | 
						|
                 "multiple_oneof.pb.c",
 | 
						|
                 "$COMMON/pb_decode.o",
 | 
						|
                 "$COMMON/pb_encode.o",
 | 
						|
                 "$COMMON/pb_common.o"])
 | 
						|
env.RunTest(p)
 | 
						|
 |