Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
code
pfabric
Commits
0be2c8b2
Commit
0be2c8b2
authored
Aug 30, 2019
by
Philipp Götze
Browse files
Increased timeout duration for ZMQ test cases
parent
25c26ec6
Pipeline
#186
failed with stages
in 17 minutes and 28 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/test/ZMQPubSubTest.cpp
View file @
0be2c8b2
...
...
@@ -65,9 +65,9 @@ TEST_CASE("Transfer a binary tuple stream via ZMQ", "[ZMQSource][ZMQSink]") {
auto
deserializer
=
std
::
make_shared
<
TupleDeserializer
<
MyTuplePtr
>
>
();
CREATE_DATA_LINK
(
src
,
deserializer
);
CREATE_DATA_LINK
(
deserializer
,
mockup
);
handle
.
get
();
mockup
->
wait
();
mockup
->
wait
(
4000ms
);
src
->
stop
();
REQUIRE
(
mockup
->
numTuplesProcessed
()
==
numTuples
);
...
...
src/test/ZMQSourceTest.cpp
View file @
0be2c8b2
...
...
@@ -78,7 +78,7 @@ TEST_CASE("Receiving a ascii tuple stream via ZMQSource", "[ZMQSource]") {
CREATE_DATA_LINK
(
extractor
,
mockup
);
handle
.
get
();
mockup
->
wait
();
mockup
->
wait
(
4000ms
);
src
->
stop
();
REQUIRE
(
mockup
->
numTuplesProcessed
()
==
6
);
...
...
@@ -124,7 +124,7 @@ TEST_CASE("Receiving a binary tuple stream via ZMQSource", "[ZMQSource]") {
CREATE_DATA_LINK
(
extractor
,
mockup
);
handle
.
get
();
mockup
->
wait
();
mockup
->
wait
(
4000ms
);
src
->
stop
();
REQUIRE
(
mockup
->
numTuplesProcessed
()
==
6
);
...
...
Write
Preview
Supports
Markdown
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