CUnit 설치 노트

오늘 CUnit 를 설치 해서 몇 개의 구 덩이 를 발 견 했 습 니 다. 여기에 적어 주세요.
먼저 CUnit 다운로드:http://cunit.sourceforge.net/
설치 과정:
tar jxvf CUnit-2.1-3.tar.bz2
cd CUnit-2.1-3
./bootstrap
./configure
make
make install

이때 CUnit 가 설치 되 어 있 습 니 다.그러나 사용 할 때 문제 가 있 을 수 있 습 니 다. 테스트 사례 를 컴 파일 할 때 다음 과 같이 나타 날 수 있 습 니 다.
cc -o tests/build-tests tests/httptest.c
/tmp/ccl6l4rB.o: In function `test1':
httptest.c:(.text+0x3b): undefined reference to `CU_assertImplementation'
/tmp/ccl6l4rB.o: In function `test2':
httptest.c:(.text+0x66): undefined reference to `CU_assertImplementation'
/tmp/ccl6l4rB.o: In function `main':
httptest.c:(.text+0x7d): undefined reference to `CU_initialize_registry'
httptest.c:(.text+0x86): undefined reference to `CU_get_error'
httptest.c:(.text+0x9f): undefined reference to `CU_add_suite'
httptest.c:(.text+0xaf): undefined reference to `CU_cleanup_registry'
httptest.c:(.text+0xb4): undefined reference to `CU_get_error'
httptest.c:(.text+0xcc): undefined reference to `CU_add_test'
httptest.c:(.text+0xe7): undefined reference to `CU_add_test'
httptest.c:(.text+0xf1): undefined reference to `CU_cleanup_registry'
httptest.c:(.text+0xf6): undefined reference to `CU_get_error'
httptest.c:(.text+0x102): undefined reference to `CU_basic_set_mode'
httptest.c:(.text+0x107): undefined reference to `CU_basic_run_tests'
httptest.c:(.text+0x10c): undefined reference to `CU_cleanup_registry'
httptest.c:(.text+0x111): undefined reference to `CU_get_error'
collect2: ld returned 1 exit status
make: *** [build-tests] Error 1

컴 파일 할 때 - lcunit 를 추가 하면 됩 니 다. 예 를 들 어 제 Makefile: 
build-tests : tests/httptest.o
	cc -o tests/build-tests tests/httptest.c -lcunit
tests/httptest.o : tests/httptest.c

test : build-tests
	tests/build-tests

테스트 용례 를 실행 할 때 나타 나 면:
./build-tests: error while loading shared libraries: libcunit.so.1: cannot open shared ob

힌트 는 libcunit. so. 1 을 찾 을 수 없습니다. 부 드 러 운 연결 을 하면 됩 니 다.
sudo ln -s /usr/local/lib/libcunit.so.1 libcunit.so.1

해결!

좋은 웹페이지 즐겨찾기