mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
12 lines
297 B
Text
12 lines
297 B
Text
|
# Regression test for #524:
|
||
|
# Generator fails to find dependencies from another package namespace
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
env.NanopbProto("submessage.proto")
|
||
|
env.NanopbProto("oneof.proto")
|
||
|
env.Depends("oneof.pb.c", "submessage.proto")
|
||
|
env.Object("oneof.pb.c")
|
||
|
env.Match(["oneof.pb.h", "oneof.expected"])
|
||
|
|