summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-08-10 17:44:27 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-08-10 17:44:27 +0300
commit0b517b07789049089e19b714311c596399d53f8e (patch)
tree4210638ce77a220e3c1d857aec97c5370405ce0c /tests
parentadf0ab81d400a49f5986d4de4b6e0dca617d5e13 (diff)
Fix windows build error in tests
Diffstat (limited to 'tests')
-rw-r--r--tests/extensions/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/SConscript b/tests/extensions/SConscript
index cf2e096e..a2c87428 100644
--- a/tests/extensions/SConscript
+++ b/tests/extensions/SConscript
@@ -8,8 +8,8 @@ incpath.Append(PROTOCPATH = '$BUILD/alltypes')
incpath.Append(CPPPATH = '$BUILD/alltypes')
incpath.NanopbProto(["extensions", "extensions.options"])
-enc = incpath.Program(["encode_extensions.c", "extensions.pb.c", "$BUILD/alltypes/alltypes.pb.o", "$COMMON/pb_encode.o", "$COMMON/pb_common.o"])
-dec = incpath.Program(["decode_extensions.c", "extensions.pb.c", "$BUILD/alltypes/alltypes.pb.o", "$COMMON/pb_decode.o", "$COMMON/pb_common.o"])
+enc = incpath.Program(["encode_extensions.c", "extensions.pb.c", "$BUILD/alltypes/alltypes.pb$OBJSUFFIX", "$COMMON/pb_encode.o", "$COMMON/pb_common.o"])
+dec = incpath.Program(["decode_extensions.c", "extensions.pb.c", "$BUILD/alltypes/alltypes.pb$OBJSUFFIX", "$COMMON/pb_decode.o", "$COMMON/pb_common.o"])
env.RunTest(enc)
env.RunTest([dec, "encode_extensions.output"])