[ox] Make tests search in {build output}/bin dir for tests
This commit is contained in:
26
deps/ox/src/ox/fs/test/CMakeLists.txt
vendored
26
deps/ox/src/ox/fs/test/CMakeLists.txt
vendored
@@ -10,20 +10,20 @@ target_link_libraries(
|
||||
OxMetalClaw
|
||||
)
|
||||
|
||||
add_test("[ox/fs] PtrArith::setSize" FSTests PtrArith::setSize)
|
||||
add_test("[ox/fs] PtrArith::setSize" ${CMAKE_BINARY_DIR}/bin/FSTests PtrArith::setSize)
|
||||
|
||||
add_test("[ox/fs] PathIterator::next1" FSTests PathIterator::next1)
|
||||
add_test("[ox/fs] PathIterator::next2" FSTests PathIterator::next2)
|
||||
add_test("[ox/fs] PathIterator::next3" FSTests PathIterator::next3)
|
||||
add_test("[ox/fs] PathIterator::next4" FSTests PathIterator::next4)
|
||||
add_test("[ox/fs] PathIterator::next5" FSTests PathIterator::next5)
|
||||
add_test("[ox/fs] PathIterator::hasNext" FSTests PathIterator::hasNext)
|
||||
add_test("[ox/fs] PathIterator::next1" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::next1)
|
||||
add_test("[ox/fs] PathIterator::next2" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::next2)
|
||||
add_test("[ox/fs] PathIterator::next3" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::next3)
|
||||
add_test("[ox/fs] PathIterator::next4" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::next4)
|
||||
add_test("[ox/fs] PathIterator::next5" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::next5)
|
||||
add_test("[ox/fs] PathIterator::hasNext" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::hasNext)
|
||||
|
||||
add_test("[ox/fs] PathIterator::dirPath" FSTests PathIterator::dirPath)
|
||||
add_test("[ox/fs] PathIterator::fileName" FSTests PathIterator::fileName)
|
||||
add_test("[ox/fs] PathIterator::dirPath" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::dirPath)
|
||||
add_test("[ox/fs] PathIterator::fileName" ${CMAKE_BINARY_DIR}/bin/FSTests PathIterator::fileName)
|
||||
|
||||
add_test("[ox/fs] NodeBuffer::insert" FSTests "NodeBuffer::insert")
|
||||
add_test("[ox/fs] FileStore::readWrite" FSTests "FileStore::readWrite")
|
||||
add_test("[ox/fs] NodeBuffer::insert" ${CMAKE_BINARY_DIR}/bin/FSTests "NodeBuffer::insert")
|
||||
add_test("[ox/fs] FileStore::readWrite" ${CMAKE_BINARY_DIR}/bin/FSTests "FileStore::readWrite")
|
||||
|
||||
add_test("[ox/fs] Directory" FSTests "Directory")
|
||||
add_test("[ox/fs] FileSystem" FSTests "FileSystem")
|
||||
add_test("[ox/fs] Directory" ${CMAKE_BINARY_DIR}/bin/FSTests "Directory")
|
||||
add_test("[ox/fs] FileSystem" ${CMAKE_BINARY_DIR}/bin/FSTests "FileSystem")
|
||||
|
Reference in New Issue
Block a user