Merge pull request #2551 from akva2/fix_test_dir

fixed: use PROJECT_BINARY_DIR, not CMAKE_BINARY_DIR
This commit is contained in:
Markus Blatt 2020-04-21 11:16:00 +02:00 committed by GitHub
commit e61e2bd399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,7 +168,7 @@ opm_add_test(test_gatherconvergencereport
CONDITION CONDITION
MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND
DRIVER_ARGS DRIVER_ARGS
5 ${CMAKE_BINARY_DIR} 5 ${PROJECT_BINARY_DIR}
) )
opm_add_test(test_gatherdeferredlogger opm_add_test(test_gatherdeferredlogger
@ -179,7 +179,7 @@ opm_add_test(test_gatherdeferredlogger
CONDITION CONDITION
MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND
DRIVER_ARGS DRIVER_ARGS
5 ${CMAKE_BINARY_DIR} 5 ${PROJECT_BINARY_DIR}
) )
include(OpmBashCompletion) include(OpmBashCompletion)