Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Podhorszki, Norbert
ADIOS2
Commits
f0c5a1a5
Commit
f0c5a1a5
authored
Mar 11, 2020
by
Ruonan Wang
Committed by
Wang, Ruonan
Mar 12, 2020
Browse files
temporarily removed fortran tests from SSC
parent
5c2d76dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
testing/adios2/engine/dataman/TestDataMan.h
View file @
f0c5a1a5
...
...
@@ -22,6 +22,7 @@ int mpiRank = 0;
int
mpiSize
=
1
;
size_t
print_lines
=
0
;
size_t
to_print_lines
=
0
;
template
<
class
T
>
void
GenData
(
std
::
vector
<
std
::
complex
<
T
>>
&
data
,
const
size_t
step
)
...
...
@@ -67,7 +68,7 @@ void VerifyData(const std::complex<T> *data, const size_t size, size_t step)
{
ASSERT_EQ
(
data
[
i
],
tmpdata
[
i
]);
}
if
(
print_lines
<
100
)
if
(
print_lines
<
to_print_lines
)
{
PrintData
(
data
,
size
,
step
);
++
print_lines
;
...
...
@@ -83,7 +84,7 @@ void VerifyData(const T *data, const size_t size, size_t step)
{
ASSERT_EQ
(
data
[
i
],
tmpdata
[
i
]);
}
if
(
print_lines
<
100
)
if
(
print_lines
<
to_print_lines
)
{
PrintData
(
data
,
size
,
step
);
++
print_lines
;
...
...
testing/adios2/engine/staging-common/CMakeLists.txt
View file @
f0c5a1a5
...
...
@@ -237,9 +237,6 @@ endif()
if
(
ADIOS2_HAVE_SSC
)
set
(
SSC_TESTS
"1x1;1x1.Attrs;2x1;1x2;2x1ZeroDataVar;2x1ZeroDataR64;3x5;5x3;3x5LockGeometry;TimeoutOnOpen"
)
if
(
ADIOS2_HAVE_Fortran
)
list
(
APPEND SSC_TESTS
"FtoC.1x1"
"FtoC.3x5"
)
endif
()
foreach
(
test
${
SSC_TESTS
}
)
add_common_test
(
${
test
}
SSC
)
endforeach
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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