1# Regression test for #1017:
2# Test that missing required fields are correctly reported by all streams.
3
4Import("env")
5
6env.NanopbProto("test.proto")
7
8p = env.Program(["test.c",
9                 "test.pb.c",
10                 "$COMMON/pb_decode.o",
11                 "$COMMON/pb_common.o"])
12
13env.RunTest(p)
14