diff options
Diffstat (limited to 'tests/callbacks/SConscript')
-rw-r--r-- | tests/callbacks/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/callbacks/SConscript b/tests/callbacks/SConscript index 729fd65f..9ec8a434 100644 --- a/tests/callbacks/SConscript +++ b/tests/callbacks/SConscript @@ -3,8 +3,8 @@ Import("env") env.NanopbProto("callbacks") -enc = env.Program(["encode_callbacks.c", "callbacks.pb.c", "#common/pb_encode.o"]) -dec = env.Program(["decode_callbacks.c", "callbacks.pb.c", "#common/pb_decode.o"]) +enc = env.Program(["encode_callbacks.c", "callbacks.pb.c", "$COMMON/pb_encode.o"]) +dec = env.Program(["decode_callbacks.c", "callbacks.pb.c", "$COMMON/pb_decode.o"]) env.RunTest(enc) env.RunTest([dec, "encode_callbacks.output"]) |