1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
Description: Remove failing loadsave tests
Bug: https://github.com/cburstedde/p4est/issues/32
Author: Matthias Maier <tamiko+DEBIAN@kyomu.43-1.org>
Last-Update: 2021-06-07
Index: p4est/test/Makefile.am
===================================================================
--- p4est.orig/test/Makefile.am
+++ p4est/test/Makefile.am
@@ -10,7 +10,7 @@ p4est_test_programs += \
test/p4est_test_quadrants test/p4est_test_balance \
test/p4est_test_partition test/p4est_test_coarsen \
test/p4est_test_valid test/p4est_test_balance_type \
- test/p4est_test_loadsave test/p4est_test_order \
+ test/p4est_test_order \
test/p4est_test_load test/p4est_test_ghost \
test/p4est_test_mesh_bijective test/p4est_test_conn_transformation \
test/p4est_test_iterate test/p4est_test_lnodes \
@@ -35,7 +35,7 @@ p4est_test_programs += \
test/p8est_test_partition test/p8est_test_coarsen \
test/p8est_test_valid test/p8est_test_balance_type \
test/p8est_test_face_transform test/p8est_test_edge_face_corners \
- test/p8est_test_periodic test/p8est_test_loadsave \
+ test/p8est_test_periodic \
test/p8est_test_load test/p8est_test_ghost \
test/p8est_test_mesh_bijective test/p8est_test_conn_transformation \
test/p8est_test_iterate test/p8est_test_lnodes \
@@ -78,7 +78,6 @@ test_p4est_test_order_SOURCES = test/tes
test_p4est_test_coarsen_SOURCES = test/test_coarsen2.c
test_p4est_test_valid_SOURCES = test/test_valid2.c
test_p4est_test_balance_type_SOURCES = test/test_balance_type2.c
-test_p4est_test_loadsave_SOURCES = test/test_loadsave2.c
test_p4est_test_load_SOURCES = test/test_load2.c
test_p4est_test_ghost_SOURCES = test/test_ghost2.c
test_p4est_test_mesh_bijective_SOURCES = test/test_mesh_bijective2.c
@@ -118,7 +117,6 @@ test_p8est_test_balance_type_SOURCES = t
test_p8est_test_face_transform_SOURCES = test/test_face_transform3.c
test_p8est_test_edge_face_corners_SOURCES = test/test_edge_face_corners3.c
test_p8est_test_periodic_SOURCES = test/test_periodic3.c
-test_p8est_test_loadsave_SOURCES = test/test_loadsave3.c
test_p8est_test_load_SOURCES = test/test_load3.c
test_p8est_test_ghost_SOURCES = test/test_ghost3.c
test_p8est_test_mesh_bijective_SOURCES = test/test_mesh_bijective3.c
@@ -167,7 +165,6 @@ LINT_CSOURCES += \
$(test_p4est_test_coarsen_SOURCES) \
$(test_p4est_test_valid_SOURCES) \
$(test_p4est_test_balance_type_SOURCES) \
- $(test_p4est_test_loadsave_SOURCES) \
$(test_p4est_test_load_SOURCES) \
$(test_p4est_test_ghost_SOURCES) \
$(test_p4est_test_mesh_bijective_SOURCES) \
@@ -198,7 +195,6 @@ LINT_CSOURCES += \
$(test_p8est_test_face_transform_SOURCES) \
$(test_p8est_test_edge_face_corners_SOURCES) \
$(test_p8est_test_periodic_SOURCES) \
- $(test_p8est_test_loadsave_SOURCES) \
$(test_p8est_test_load_SOURCES) \
$(test_p8est_test_ghost_SOURCES) \
$(test_p8est_test_mesh_bijective_SOURCES) \
|