Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Podhorszki, Norbert
ADIOS2
Commits
19d49cf2
Commit
19d49cf2
authored
Jun 30, 2019
by
Atkins, Charles Vernon
Browse files
Fix CMake warnigns from mismatched endif()
parent
196be864
Changes
1
Hide whitespace changes
Inline
Side-by-side
testing/adios2/engine/staging-common/CMakeLists.txt
View file @
19d49cf2
...
...
@@ -199,7 +199,7 @@ endif()
#
# Setup tests for BP engine
#
if
(
NOT MSVC
)
# not on windows
if
(
NOT MSVC
)
# not on windows
# Local Vars don't work for InSitu
set
(
BP_TESTS
${
ALL_SIMPLE_TESTS
}
)
# Delayed reader not worth testing on file engines
...
...
@@ -210,12 +210,12 @@ if (NOT MSVC) # not on windows
add_common_test
(
${
test
}
BP3
)
add_common_test
(
${
test
}
BP4
)
endforeach
()
endif
(
NOT MSVC
)
endif
()
#
# Setup tests for HDF5 engine
#
if
(
NOT MSVC AND ADIOS2_HAVE_HDF5
)
# not on windows and only if we have HDF5
if
(
NOT MSVC AND ADIOS2_HAVE_HDF5
)
# not on windows and only if we have HDF5
set
(
HDF5_TESTS
${
ALL_SIMPLE_TESTS
}
)
# Delayed reader not worth testing on file engines
list
(
FILTER HDF5_TESTS EXCLUDE REGEX
"DelayedReader"
)
...
...
@@ -226,14 +226,14 @@ if (NOT MSVC AND ADIOS2_HAVE_HDF5) # not on windows and only if we have HDF5
foreach
(
test
${
HDF5_TESTS
}
)
add_common_test
(
${
test
}
HDF5
)
endforeach
()
endif
(
NOT MSVC
)
endif
()
#
# Setup tests for SSC engine
#
if
(
ADIOS2_HAVE_SSC AND ADIOS2_HAVE_MPI
)
SET
(
SSC_TESTS
"NoReaderNoWait"
)
set
(
SSC_TESTS
"NoReaderNoWait"
)
foreach
(
test
${
SSC_TESTS
}
)
add_common_test
(
${
test
}
SSC
)
endforeach
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment