From 4a77cebdb4ecdea1505957b928bef1916b14c198 Mon Sep 17 00:00:00 2001 From: Ali Mashtizadeh Date: Fri, 27 Feb 2015 16:06:12 -0800 Subject: [PATCH] Fix tests build --- tests/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/SConscript b/tests/SConscript index 38d21b9..38fc73e 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -17,7 +17,7 @@ test_env.Program("threadtest", threadtest_src) pthreadtest_src = [] pthreadtest_src.append(env["CRTBEGIN"]) -pthreadtest_src.append(["threadtest.c"]) +pthreadtest_src.append(["pthreadtest.c"]) pthreadtest_src.append(env["CRTEND"]) test_env.Program("pthreadtest", pthreadtest_src) @@ -31,7 +31,7 @@ test_netenv.Append(LIBPATH = ['#build/lib/libc', '#build/lib/liblwip'], lwiptest_src = [] lwiptest_src.append(env["CRTBEGIN"]) -lwiptest_src.append(["threadtest.c"]) +lwiptest_src.append(["lwiptest.c"]) lwiptest_src.append(env["CRTEND"]) test_netenv.Program("lwiptest", lwiptest_src)