Mutiple pages: add Korean translation (#3594)

Add Korean translation for the following common pages:

 - csvpy
 - csvsort
 - csvstat
 - ctest
 - curl
 - cut
 - darkhttpd
 - date
This commit is contained in:
dmakth
2019-11-22 17:10:17 +09:00
committed by Marco Bonelli
parent 06aa050c9d
commit 61fa29d29f
8 changed files with 175 additions and 0 deletions

16
pages.ko/common/ctest.md Normal file
View File

@@ -0,0 +1,16 @@
# ctest
> CMake 테스트 드라이버 프로그램.
> 더 많은 정보: <https://gitlab.kitware.com/cmake/community/wikis/doc/ctest/Testing-With-CTest>.
- CMake 프로젝트에 정의된 모든 테스트를 실행하며 , 한번에 4개의 작업을 병렬 실행:
`ctest -j{{4}} --output-on-failure`
- 사용 가능한 테스트 목록 표시:
`ctest -N`
- 이름을 기준으로 단일 테스트를 실행하거나 정규식을 기준으로 필터링:
`ctest --output-on-failure -R '^{{테스트명}}$'`