2016-08-17 44 views
0

我想用Unity對我的C代碼進行單元測試,但在編譯時,我得到了以下錯誤:未定義的參考`UNITY_BEGIN」和‘UNITY_END’

$ make 
gcc ../Unity/src/unity.o src/helpers.o src/chess.o src/search.o test/TestCheck.o src/main.o -o checkai 
src/main.o: In function `main': 
main.c:(.text+0x4b): undefined reference to `UNITY_BEGIN' 
main.c:(.text+0x55): undefined reference to `UNITY_END' 
collect2: error: ld returned 1 exit status 
make: *** [Makefile:11: checkai] Error 1 
$ make -n 
gcc ../Unity/src/unity.o src/helpers.o src/chess.o src/search.o test/TestCheck.o src/main.o -o checkai 

我的主要functon只是看起來是這樣的:

#include <stdio.h> 
#include <stdlib.h> 

#include "helpers.h" 
#include "chess.h" 

#include "../../Unity/src/unity.h" 
//#include "../test/TestCheck.h" 

void test_Smoke(void) { 
    TEST_ASSERT_EQUAL_INT(1, 2); 
} 

int main() { 
    version(); 

    chesspiece chessboard[8][8]; 
    initField(chessboard); 

    UNITY_BEGIN(); 
    RUN_TEST(test_Smoke, 1); 
    return UNITY_END(); 
} 

不正確地鏈接了一些東西嗎?我已經嘗試改變gcc命令的順序,但沒有任何幫助。 當我評論出UNITY_BEGINUNITY_END我可以編譯它,煙霧測試運行沒有問題。

回答

0

我可以通過不使用發佈版本2.1.0來解決它。 爲了解決它,我已經克隆當前的主分支,它只是甚至UNITY_BEGINUNITY_END工作:

git clone https://github.com/ThrowTheSwitch/Unity.git