https://github.com/feelpp/feelpp
Raw File
Tip revision: 35f14a489f12deb8126f8f3278c44d7e12fd4ba4 authored by Christophe Prud'homme on 01 May 2018, 20:24:13 UTC
added homebrew in build matrix [ci skip]
Tip revision: 35f14a4
CMakeLists.txt

#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
set_directory_properties(PROPERTIES LABEL testinterpolation )

feelpp_add_test( interpolation_type NO_FEELPP_LIBRARY)
feelpp_add_test( form_interpolation NO_MPI_TEST )
feelpp_add_test( interpolation NO_MPI_TEST   )
feelpp_add_test( interpolation_op NO_MPI_TEST )
feelpp_add_test( interp_twomesh NO_MPI_TEST )
feelpp_add_test( eval_at_point )
feelpp_add_test( operatorinterpolation )
feelpp_add_test( hypercubeinterpolation )
feelpp_add_test( interpolation_grad )
feelpp_add_test( interpolation_id )

feelpp_add_test( interpolation_RT CFG test_interpolation_RT.cfg NO_MPI_TEST)
feelpp_add_test( interpolation_Nedelec CFG test_interpolation_Nedelec.cfg NO_MPI_TEST)
feelpp_add_test( interpolation_Nedelec3d CFG test_interpolation_Nedelec3d.cfg NO_MPI_TEST )

feelpp_add_test( darcy_on_2d SRCS test_darcy_on.cpp CFG test_darcy_on.cfg DEFS FEELPP_DIM=2 CLI "--gmsh.hsize=0.1" )
feelpp_add_test( darcy_on_3d SRCS test_darcy_on.cpp CFG test_darcy_on.cfg DEFS FEELPP_DIM=3  CLI "--gmsh.hsize=0.2" )

feelpp_add_test( on_project SRCS test_on_project GEO square_mmarked.geo CFG test_on_project.cfg )
back to top