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
해결!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.