Fix tests build

This commit is contained in:
Ali Mashtizadeh 2015-02-27 16:06:12 -08:00
parent 2809d233b5
commit 4a77cebdb4

View File

@ -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)