mirror of
https://github.com/google/pebble.git
synced 2025-06-24 01:56:16 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
19
third_party/nanopb/tests/anonymous_oneof/SConscript
vendored
Normal file
19
third_party/nanopb/tests/anonymous_oneof/SConscript
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Test anonymous_oneof generator option
|
||||
|
||||
Import('env')
|
||||
|
||||
# Anonymous oneofs are supported by clang and gcc
|
||||
if 'clang' in env['CC'] or 'gcc' in env['CC']:
|
||||
env2 = env.Clone()
|
||||
if '-pedantic' in env2['CFLAGS']:
|
||||
env2['CFLAGS'].remove('-pedantic')
|
||||
env2.NanopbProto('oneof')
|
||||
|
||||
dec = env2.Program(['decode_oneof.c',
|
||||
'oneof.pb.c',
|
||||
'$COMMON/pb_decode.o',
|
||||
'$COMMON/pb_common.o'])
|
||||
|
||||
env2.RunTest("message1.txt", [dec, '$BUILD/oneof/message1.pb'], ARGS = ['1'])
|
||||
env2.RunTest("message2.txt", [dec, '$BUILD/oneof/message2.pb'], ARGS = ['2'])
|
||||
env2.RunTest("message3.txt", [dec, '$BUILD/oneof/message3.pb'], ARGS = ['3'])
|
Loading…
Add table
Add a link
Reference in a new issue