Skip to content

Commit 262c8c4

Browse files
committed
Guard all examples to avoid errors with --disable-optional.
This way we can still run "make check" successfully even though it doesn't really check much of anything.
1 parent 20a8690 commit 262c8c4

File tree

36 files changed

+144
-0
lines changed

36 files changed

+144
-0
lines changed

examples/adaptivity/adaptivity_ex1/adaptivity_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ int main(int argc, char ** argv)
6565
// finalized.
6666
LibMeshInit init (argc, argv);
6767

68+
// This example requires a linear solver package.
69+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
70+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
71+
6872
// Skip adaptive examples on a non-adaptive libMesh build
6973
#ifndef LIBMESH_ENABLE_AMR
7074
libmesh_example_requires(false, "--enable-amr");

examples/adaptivity/adaptivity_ex2/adaptivity_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ int main (int argc, char ** argv)
119119
// Initialize libMesh.
120120
LibMeshInit init (argc, argv);
121121

122+
// This example requires a linear solver package.
123+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
124+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
125+
122126
#ifndef LIBMESH_ENABLE_AMR
123127
libmesh_example_requires(false, "--enable-amr");
124128
#else

examples/adaptivity/adaptivity_ex3/adaptivity_ex3.C

+4
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ int main(int argc, char ** argv)
118118
// Initialize libMesh.
119119
LibMeshInit init (argc, argv);
120120

121+
// This example requires a linear solver package.
122+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
123+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
124+
121125
// Single precision is inadequate for p refinement
122126
libmesh_example_requires(sizeof(Real) > 4, "--disable-singleprecision");
123127

examples/adaptivity/adaptivity_ex4/adaptivity_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ int main(int argc, char ** argv)
152152
// Initialize libMesh.
153153
LibMeshInit init (argc, argv);
154154

155+
// This example requires a linear solver package.
156+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
157+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
158+
155159
// Adaptive constraint calculations for fine Hermite elements seems
156160
// to require half-decent precision
157161
#ifdef LIBMESH_DEFAULT_SINGLE_PRECISION

examples/adaptivity/adaptivity_ex5/adaptivity_ex5.C

+4
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ int main (int argc, char ** argv)
129129
// Initialize libMesh.
130130
LibMeshInit init (argc, argv);
131131

132+
// This example requires a linear solver package.
133+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
134+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
135+
132136
// Skip this 2D example if libMesh was compiled as 1D-only.
133137
libmesh_example_requires(2 <= LIBMESH_DIM, "2D support");
134138

examples/adjoints/adjoints_ex1/adjoints_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,10 @@ int main (int argc, char ** argv)
236236
// Initialize libMesh.
237237
LibMeshInit init (argc, argv);
238238

239+
// This example requires a linear solver package.
240+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
241+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
242+
239243
// Skip adaptive examples on a non-adaptive libMesh build
240244
#ifndef LIBMESH_ENABLE_AMR
241245
libmesh_example_requires(false, "--enable-amr");

examples/adjoints/adjoints_ex2/adjoints_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,10 @@ int main (int argc, char ** argv)
236236
// Initialize libMesh.
237237
LibMeshInit init (argc, argv);
238238

239+
// This example requires a linear solver package.
240+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
241+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
242+
239243
// Skip adaptive examples on a non-adaptive libMesh build
240244
#ifndef LIBMESH_ENABLE_AMR
241245
libmesh_example_requires(false, "--enable-amr");

examples/adjoints/adjoints_ex4/adjoints_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,10 @@ int main (int argc, char** argv)
205205
// Initialize libMesh.
206206
LibMeshInit init (argc, argv);
207207

208+
// This example requires a linear solver package.
209+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
210+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
211+
208212
// Skip adaptive examples on a non-adaptive libMesh build
209213
#ifndef LIBMESH_ENABLE_AMR
210214
libmesh_example_requires(false, "--enable-amr");

examples/fem_system/fem_system_ex1/fem_system_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ int main (int argc, char ** argv)
5555
// Initialize libMesh.
5656
LibMeshInit init (argc, argv);
5757

58+
// This example requires a linear solver package.
59+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
60+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
61+
5862
// This example fails without at least double precision FP
5963
#ifdef LIBMESH_DEFAULT_SINGLE_PRECISION
6064
libmesh_example_requires(false, "--disable-singleprecision");

examples/fem_system/fem_system_ex2/fem_system_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ int main(int argc, char ** argv)
149149
// Initialize libMesh and any dependent libraries
150150
LibMeshInit init(argc, argv);
151151

152+
// This example requires a linear solver package.
153+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
154+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
155+
152156
// Skip this example if we do not meet certain requirements
153157
#ifndef LIBMESH_HAVE_VTK
154158
libmesh_example_requires(false, "--enable-vtk");

examples/fem_system/fem_system_ex3/fem_system_ex3.C

+4
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ int main (int argc, char ** argv)
6060
// Initialize libMesh.
6161
LibMeshInit init (argc, argv);
6262

63+
// This example requires a linear solver package.
64+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
65+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
66+
6367
// Parse the input file
6468
GetPot infile("fem_system_ex3.in");
6569

examples/fem_system/fem_system_ex4/fem_system_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ int main (int argc, char ** argv)
5959
// Initialize libMesh.
6060
LibMeshInit init (argc, argv);
6161

62+
// This example requires a linear solver package.
63+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
64+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
65+
6266
#ifndef LIBMESH_ENABLE_AMR
6367
libmesh_example_requires(false, "--enable-amr");
6468
#else

examples/introduction/introduction_ex2/introduction_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ int main (int argc, char ** argv)
7171
// Skip this 2D example if libMesh was compiled as 1D-only.
7272
libmesh_example_requires(2 <= LIBMESH_DIM, "2D support");
7373

74+
// This example requires a linear solver package.
75+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
76+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
77+
7478
// A brief message to the user to inform her of the
7579
// exact name of the program being run, and its command line.
7680
libMesh::out << "Running " << argv[0];

examples/introduction/introduction_ex3/introduction_ex3.C

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ int main (int argc, char ** argv)
8181
// Initialize libraries, like in example 2.
8282
LibMeshInit init (argc, argv);
8383

84+
// This example requires a linear solver package.
85+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
86+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
87+
8488
// Brief message to the user regarding the program name
8589
// and command line arguments.
8690
libMesh::out << "Running " << argv[0];

examples/introduction/introduction_ex4/introduction_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ int main (int argc, char ** argv)
118118
// Initialize libMesh and any dependent libaries, like in example 2.
119119
LibMeshInit init (argc, argv);
120120

121+
// This example requires a linear solver package.
122+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
123+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
124+
121125
// Declare a performance log for the main program
122126
// PerfLog perf_main("Main Program");
123127

examples/introduction/introduction_ex5/introduction_ex5.C

+4
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ int main (int argc, char ** argv)
100100
// Initialize libMesh and any dependent libaries, like in example 2.
101101
LibMeshInit init (argc, argv);
102102

103+
// This example requires a linear solver package.
104+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
105+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
106+
103107
// Check for proper usage. The quadrature rule
104108
// must be given at run time.
105109
if (argc < 3)

examples/miscellaneous/miscellaneous_ex10/miscellaneous_ex10.C

+4
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ int main (int argc, char ** argv)
7373
START_LOG("Initialize and create cubes", "main");
7474
LibMeshInit init (argc, argv);
7575

76+
// This example requires a linear solver package.
77+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
78+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
79+
7680
// Create a GetPot object to parse the command line
7781
GetPot command_line (argc, argv);
7882

examples/miscellaneous/miscellaneous_ex11/miscellaneous_ex11.C

+4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ int main (int argc, char ** argv)
7979
// Initialize libMesh.
8080
LibMeshInit init (argc, argv);
8181

82+
// This example requires a linear solver package.
83+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
84+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
85+
8286
// Skip this 3D example if libMesh was compiled as 1D/2D-only.
8387
libmesh_example_requires (3 == LIBMESH_DIM, "3D support");
8488

examples/miscellaneous/miscellaneous_ex5/miscellaneous_ex5.C

+4
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,10 @@ int main (int argc, char** argv)
500500
{
501501
LibMeshInit init(argc, argv);
502502

503+
// This example requires a linear solver package.
504+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
505+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
506+
503507
// Skip adaptive examples on a non-adaptive libMesh build
504508
#ifndef LIBMESH_ENABLE_AMR
505509
libmesh_example_requires(false, "--enable-amr");

examples/reduced_basis/reduced_basis_ex1/reduced_basis_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ int main (int argc, char ** argv)
7878
// Initialize libMesh.
7979
LibMeshInit init (argc, argv);
8080

81+
// This example requires a linear solver package.
82+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
83+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
84+
8185
#if !defined(LIBMESH_HAVE_XDR)
8286
// We need XDR support to write out reduced bases
8387
libmesh_example_requires(false, "--enable-xdr");

examples/reduced_basis/reduced_basis_ex4/reduced_basis_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ int main (int argc, char ** argv)
5959
// Initialize libMesh.
6060
LibMeshInit init (argc, argv);
6161

62+
// This example requires a linear solver package.
63+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
64+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
65+
6266
#if !defined(LIBMESH_HAVE_XDR)
6367
// We need XDR support to write out reduced bases
6468
libmesh_example_requires(false, "--enable-xdr");

examples/reduced_basis/reduced_basis_ex5/reduced_basis_ex5.C

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ int main(int argc, char ** argv)
8484
// Initialize libMesh.
8585
LibMeshInit init (argc, argv);
8686

87+
// This example requires a linear solver package.
88+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
89+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
90+
8791
#if !defined(LIBMESH_HAVE_XDR)
8892
// We need XDR support to write out reduced bases
8993
libmesh_example_requires(false, "--enable-xdr");

examples/reduced_basis/reduced_basis_ex6/reduced_basis_ex6.C

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ int main (int argc, char ** argv)
112112
// Initialize libMesh.
113113
LibMeshInit init (argc, argv);
114114

115+
// This example requires a linear solver package.
116+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
117+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
118+
115119
#if !defined(LIBMESH_HAVE_XDR)
116120
// We need XDR support to write out reduced bases
117121
libmesh_example_requires(false, "--enable-xdr");

examples/subdomains/subdomains_ex2/subdomains_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ int main (int argc, char ** argv)
9393
// Initialize libMesh and any dependent libaries, like in example 2.
9494
LibMeshInit init (argc, argv);
9595

96+
// This example requires a linear solver package.
97+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
98+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
99+
96100
// Declare a performance log for the main program
97101
// PerfLog perf_main("Main Program");
98102

examples/systems_of_equations/systems_of_equations_ex1/systems_of_equations_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ int main (int argc, char ** argv)
6969
// Initialize libMesh.
7070
LibMeshInit init (argc, argv);
7171

72+
// This example requires a linear solver package.
73+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
74+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
75+
7276
// Skip this 2D example if libMesh was compiled as 1D-only.
7377
libmesh_example_requires(2 <= LIBMESH_DIM, "2D support");
7478

examples/systems_of_equations/systems_of_equations_ex2/systems_of_equations_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ int main (int argc, char** argv)
9393
// Initialize libMesh.
9494
LibMeshInit init (argc, argv);
9595

96+
// This example requires a linear solver package.
97+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
98+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
99+
96100
// Skip this 2D example if libMesh was compiled as 1D-only.
97101
libmesh_example_requires(2 <= LIBMESH_DIM, "2D support");
98102

examples/systems_of_equations/systems_of_equations_ex3/systems_of_equations_ex3.C

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ int main (int argc, char ** argv)
8181
// Initialize libMesh.
8282
LibMeshInit init (argc, argv);
8383

84+
// This example requires a linear solver package.
85+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
86+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
87+
8488
// Skip this 2D example if libMesh was compiled as 1D-only.
8589
libmesh_example_requires(2 <= LIBMESH_DIM, "2D support");
8690

examples/systems_of_equations/systems_of_equations_ex4/systems_of_equations_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ int main (int argc, char ** argv)
7777
// Initialize libMesh and any dependent libaries
7878
LibMeshInit init (argc, argv);
7979

80+
// This example requires a linear solver package.
81+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
82+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
83+
8084
// Initialize the cantilever mesh
8185
const unsigned int dim = 2;
8286

examples/systems_of_equations/systems_of_equations_ex5/systems_of_equations_ex5.C

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ int main (int argc, char ** argv)
8181
// Initialize libMesh and any dependent libaries
8282
LibMeshInit init (argc, argv);
8383

84+
// This example requires a linear solver package.
85+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
86+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
87+
8488
// This example NaNs with the Eigen sparse linear solvers
8589
libmesh_example_requires(libMesh::default_solver_package() != EIGEN_SOLVERS, "--enable-petsc or --enable-laspack");
8690

examples/systems_of_equations/systems_of_equations_ex6/systems_of_equations_ex6.C

+4
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,10 @@ int main (int argc, char ** argv)
430430
// Initialize libMesh and any dependent libraries
431431
LibMeshInit init (argc, argv);
432432

433+
// This example requires a linear solver package.
434+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
435+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
436+
433437
// Initialize the cantilever mesh
434438
const unsigned int dim = 3;
435439

examples/transient/transient_ex1/transient_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ int main (int argc, char ** argv)
105105
// Initialize libMesh.
106106
LibMeshInit init (argc, argv);
107107

108+
// This example requires a linear solver package.
109+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
110+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
111+
108112
// This example requires Adaptive Mesh Refinement support - although
109113
// it only refines uniformly, the refinement code used is the same
110114
// underneath

examples/transient/transient_ex2/transient_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ int main (int argc, char** argv)
101101
// Initialize libraries, like in example 2.
102102
LibMeshInit init (argc, argv);
103103

104+
// This example requires a linear solver package.
105+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
106+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
107+
104108
// Check for proper usage.
105109
if (argc < 2)
106110
libmesh_error_msg("Usage: " << argv[0] << " [meshfile]");

examples/vector_fe/vector_fe_ex1/vector_fe_ex1.C

+4
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ int main (int argc, char ** argv)
8080
// Initialize libraries.
8181
LibMeshInit init (argc, argv);
8282

83+
// This example requires a linear solver package.
84+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
85+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
86+
8387
// Brief message to the user regarding the program name
8488
// and command line arguments.
8589
libMesh::out << "Running " << argv[0];

examples/vector_fe/vector_fe_ex2/vector_fe_ex2.C

+4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ int main (int argc, char** argv)
4949
// Initialize libMesh.
5050
LibMeshInit init (argc, argv);
5151

52+
// This example requires a linear solver package.
53+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
54+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
55+
5256
// Parse the input file
5357
GetPot infile("vector_fe_ex2.in");
5458

examples/vector_fe/vector_fe_ex3/vector_fe_ex3.C

+4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ int main (int argc, char ** argv)
4949
// Initialize libMesh.
5050
LibMeshInit init (argc, argv);
5151

52+
// This example requires a linear solver package.
53+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
54+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
55+
5256
// Parse the input file
5357
GetPot infile("vector_fe_ex3.in");
5458

examples/vector_fe/vector_fe_ex4/vector_fe_ex4.C

+4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ int main (int argc, char ** argv)
4949
// Initialize libMesh.
5050
LibMeshInit init (argc, argv);
5151

52+
// This example requires a linear solver package.
53+
libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
54+
"--enable-petsc, --enable-trilinos, or --enable-eigen");
55+
5256
// Parse the input file
5357
GetPot infile("vector_fe_ex4.in");
5458

0 commit comments

Comments
 (0)