We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87753bb commit 1821f17Copy full SHA for 1821f17
test/CMakeLists.txt
@@ -8,3 +8,4 @@ include(FortunoTestHelpers)
8
9
add_subdirectory(unit)
10
add_subdirectory(example)
11
+add_subdirectory(export)
test/export/CMakeLists.txt
@@ -0,0 +1,21 @@
1
+# This file is part of Fortuno.
2
+# Licensed under the BSD-2-Clause Plus Patent license.
3
+# SPDX-License-Identifier: BSD-2-Clause-Patent
4
+
5
+if (FORTUNO_WITH_SERIAL)
6
+ Fortuno_add_test(serial
7
+ TEST_NAME export-serial
+ )
+endif ()
+if (FORTUNO_WITH_MPI)
12
+ Fortuno_add_test(mpi
13
+ TEST_NAME export-mpi
14
15
16
17
+if (FORTUNO_WITH_COARRAY)
18
+ Fortuno_add_test(coarray
19
+ TEST_NAME export-coarray
20
21
0 commit comments