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)