Skip to content
Snippets Groups Projects
Commit 2765cecf authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Add arguments for Stokes tests. They are still not meaningfull but show that...

Add arguments for Stokes tests. They are still not meaningfull but show that something is simulated.


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7652 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 3785a605
No related branches found
No related tags found
No related merge requests found
......@@ -388,7 +388,7 @@ add_test(tutorial_coupled tutorial/tutorial_coupled 1 1)
add_test(tutorial_decoupled tutorial/tutorial_decoupled 1)
if(SUPERLU_FOUND AND DUNE_pdelab_FOUND)
add_test(test_stokes test/freeflow/stokes/test_stokes)
add_test(test_stokes2c test/freeflow/stokes2c/test_stokes2c)
add_test(test_stokes2cni test/freeflow/stokes2cni/test_stokes2cni)
add_test(test_stokes test/freeflow/stokes/test_stokes test/freeflow/stokes/grids/test_stokes.dgf 10 1e-2)
add_test(test_stokes2c test/freeflow/stokes2c/test_stokes2c test/freeflow/stokes2c/grids/test_stokes2c.dgf 10 1e-2)
add_test(test_stokes2cni test/freeflow/stokes2cni/test_stokes2cni test/freeflow/stokes2cni/grids/test_stokes2cni.dgf 0.1 5e-3)
endif(SUPERLU_FOUND AND DUNE_pdelab_FOUND)
......@@ -8,4 +8,12 @@ target_link_libraries("test_stokes" ${SUPERLU_LIBS})
# add required libraries and includes to the build flags
link_directories(${DumuxLinkDirectories})
include_directories(${DumuxIncludeDirectories})
\ No newline at end of file
include_directories(${DumuxIncludeDirectories})
# make sure the grids are present in the build directory
add_custom_command(TARGET "test_stokes"
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E
copy_directory
"${CMAKE_CURRENT_SOURCE_DIR}/grids"
"${CMAKE_CURRENT_BINARY_DIR}/grids")
......@@ -8,4 +8,12 @@ target_link_libraries("test_stokes2c" ${SUPERLU_LIBS})
# add required libraries and includes to the build flags
link_directories(${DumuxLinkDirectories})
include_directories(${DumuxIncludeDirectories})
\ No newline at end of file
include_directories(${DumuxIncludeDirectories})
# make sure the grids are present in the build directory
add_custom_command(TARGET "test_stokes2c"
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E
copy_directory
"${CMAKE_CURRENT_SOURCE_DIR}/grids"
"${CMAKE_CURRENT_BINARY_DIR}/grids")
......@@ -8,4 +8,12 @@ target_link_libraries("test_stokes2cni" ${SUPERLU_LIBS})
# add required libraries and includes to the build flags
link_directories(${DumuxLinkDirectories})
include_directories(${DumuxIncludeDirectories})
\ No newline at end of file
include_directories(${DumuxIncludeDirectories})
# make sure the grids are present in the build directory
add_custom_command(TARGET "test_stokes2cni"
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E
copy_directory
"${CMAKE_CURRENT_SOURCE_DIR}/grids"
"${CMAKE_CURRENT_BINARY_DIR}/grids")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment