所以,我在this单元测试应用程序。
我的Makefile是CONTIKI_PROJECT = unit-test all: $(CONTIKI_PROJECT)
CONTIKI = ../.. include $(CONTIKI)/Makefile.include
我在终端上运行此命令:
sudo make example-test
或sudo make example-test TARGET=sky
但我总是收到这个错误:
example-test.co: In function process_thread_test_process':
/home/user/contiki/apps/unit-test/example-test.c:81: undefined reference to unit_test_print_report'
/home/user/contiki/apps/unit-test/example-test.c:82: undefined reference to unit_test_print_report'
collect2: ld returned 1 exit status
make: *** [example-test.native] Error 1
rm example-test.co
我没有连接物理板。我只想虚拟地运行它。 有没有办法成功运行?