From 936cfdc675c2dc3580c2459e8b1773a1d0bf9a8b Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Sat, 12 Sep 2015 13:27:56 +0300 Subject: Expand the multiple_files test case to include oneofs and enums --- tests/multiple_files/SConscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/multiple_files/SConscript') diff --git a/tests/multiple_files/SConscript b/tests/multiple_files/SConscript index 6b4f6b69..c3a82eb4 100644 --- a/tests/multiple_files/SConscript +++ b/tests/multiple_files/SConscript @@ -5,9 +5,9 @@ Import("env") incpath = env.Clone() incpath.Append(PROTOCPATH = '#multiple_files') -incpath.NanopbProto("callbacks") -incpath.NanopbProto("callbacks2") -test = incpath.Program(["test_multiple_files.c", "callbacks.pb.c", "callbacks2.pb.c"]) +incpath.NanopbProto("multifile1") +incpath.NanopbProto("multifile2") +test = incpath.Program(["test_multiple_files.c", "multifile1.pb.c", "multifile2.pb.c"]) env.RunTest(test) -- cgit 1.2.3-korg