Open wooksong opened 5 years ago
제가 확실히 이해한지 모르겠습니다만.
cd tests
ssat
를 실행 하게 되면
test/meson.build 의
copy = find_program('cp')
custom_target('copy-bmp2png',
input: b2p,
output: 'b2p',
command: [copy, '@INPUT@', meson.current_source_dir()],
build_by_default: true
)
과정에서 파일이 카피되는데 파일은 test가 끝난후에도 파일이 남아있고 이를 지우는 코드를 test/meson.build 의 마지막에 추가하면 되는것인가요?
@Lee-WonJun
$ cd tests
$ ssat
위의 명령을 실행하면 아래의 파일이 생성되고 ninja clean해도 그대로 남아있습니다. test script 보고 왜 생기는지 찾아보겠습니다.
../tests/nnstreamer_decoder_boundingbox/testtflitessd_output.0
../tests/nnstreamer_decoder_boundingbox/testtflitessd_output.1
../tests/nnstreamer_decoder_boundingbox/testtfssd_output.0
../tests/nnstreamer_decoder_boundingbox/testtfssd_output.1
@wooksong
Although
ninja clean
cleans the target, object, and garbage files in the build directory, there are still remaining garbage files in thetests
directory. How about adding a feature that cleans those files by meson or other ways?