Q. 테스트 포인트 삽입 시 발생하는 문제 종류와 대처 방안
DT+ test point 삽입 시 발생하는 에러 및 경고에 대한 설명입니다.
The insertion cancel point was found
해당 구문 또는 함수에 test point 가 들어갈 수 없는 형태입니다.
구문 및 함수 형태 확인 후 project setting > auto insertion setting 를 변경합니다.
Report data is not found.
Test point 가 없는 상태에서 data 를 import 했을 때
Test point 개수와 import 데이터 크기가 다를 경우
소스파일에 test point 삽입 후, data import
DTTestPointCountDefine.h 의 생성 경로 및 DT+ 드라이버의 include 구문 확인
Auto insertion 기능 사용 시 발생할 수 있는 Code 와 오류 내용입니다.
Code | 오류 내용 |
---|---|
E09 | There are some character codes in a source file. Determine single character code. If this error ignored, the character codes are converted to the most possibly character code and continues. > 문제가 발생한 파일의 문자셋(encoding) 변경 |
E15 | The “#include” file was not found. Please confirm the setting of the include Path, or the existence of a file itself. > DT+메뉴 ‘Project settings > Include path’에 해당 파일의 경로 추가 |
A03 | The inserted number of Test Points exceeded 2048 though the insertions was completed. > 단일 파일 기준 65535개의 Test point 삽입가능 |
A06 | No area into which can be inserted Test Point was found. > Test point 를 삽입할 위치가 없다는 의미 > 필요시‘{ }’를 삽입할 수 있는 DT+ 프로젝트 설정 변경 Project setting > Project property > mode Format source code: True Complement “else” blocks: True |