aboutsummaryrefslogtreecommitdiffhomepage
path: root/lapack
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-11-14 14:16:05 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-11-14 14:16:05 +0100
commit0fb6e244081bb5acf7d14b26001459c6df1a6c58 (patch)
tree16a6e8296f09939d606bac0cbf01001d54c44af0 /lapack
parent8af045a28721a9401d423c0318ffb99696c78f31 (diff)
Fix case issue with Lapack unit tests
Diffstat (limited to 'lapack')
-rw-r--r--lapack/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/lapack/CMakeLists.txt b/lapack/CMakeLists.txt
index 9b0d8638c..af436a323 100644
--- a/lapack/CMakeLists.txt
+++ b/lapack/CMakeLists.txt
@@ -133,13 +133,14 @@ if(EXISTS ${eigen_full_path_to_testing_lapack})
string(REGEX REPLACE "(.*)/STACK:(.*) (.*)" "\\1/STACK:900000000000000000 \\3"
CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}")
endif()
+ file(MAKE_DIRECTORY "${LAPACK_BINARY_DIR}/TESTING")
add_subdirectory(testing/MATGEN)
add_subdirectory(testing/LIN)
add_subdirectory(testing/EIG)
cmake_policy(SET CMP0026 OLD)
macro(add_lapack_test output input target)
set(TEST_INPUT "${LAPACK_SOURCE_DIR}/testing/${input}")
- set(TEST_OUTPUT "${LAPACK_BINARY_DIR}/testing/${output}")
+ set(TEST_OUTPUT "${LAPACK_BINARY_DIR}/TESTING/${output}")
get_target_property(TEST_LOC ${target} LOCATION)
string(REPLACE "." "_" input_name ${input})
set(testName "${target}_${input_name}")