CMake: fix build directory name in clean rule

llvm-svn: 324281
This commit is contained in:
Adrian Prantl 2018-02-05 22:35:46 +00:00
parent e3693a3e50
commit 74bd5eb067
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ function(add_python_test_target name test_script args comment)
add_custom_target(${name} add_custom_target(${name}
# Clear the test directory first. # Clear the test directory first.
COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_DIR}/lldb-test-build COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_DIR}/lldb-test-build.noindex
COMMAND ${PYTHON_TEST_COMMAND} ${ARG_DEFAULT_ARGS} COMMAND ${PYTHON_TEST_COMMAND} ${ARG_DEFAULT_ARGS}
COMMENT "${comment}" COMMENT "${comment}"
DEPENDS ${LLDB_TEST_DEPS} DEPENDS ${LLDB_TEST_DEPS}