Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
2c9f4ca9
Commit
2c9f4ca9
authored
Mar 28, 2017
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead code
parent
0efbd2f6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
30 deletions
+0
-30
libcaf_core/test/streaming.cpp
libcaf_core/test/streaming.cpp
+0
-30
No files found.
libcaf_core/test/streaming.cpp
View file @
2c9f4ca9
...
@@ -451,36 +451,6 @@ CAF_TEST(depth3_pipeline_order2) {
...
@@ -451,36 +451,6 @@ CAF_TEST(depth3_pipeline_order2) {
expect
((
stream_msg
::
close
),
from
(
stage
).
to
(
sink
).
with
());
expect
((
stream_msg
::
close
),
from
(
stage
).
to
(
sink
).
with
());
// sink ----(result: 25)---> self
// sink ----(result: 25)---> self
expect
((
int
),
from
(
sink
).
to
(
self
).
with
(
25
));
expect
((
int
),
from
(
sink
).
to
(
self
).
with
(
25
));
return
;
// stage --(stream_msg::open)--> sink
expect
((
stream_msg
::
open
),
from
(
self
).
to
(
sink
).
with
(
_
,
stage
,
_
,
_
,
_
,
false
));
// source --(stream_msg::batch)--> stage
expect
((
stream_msg
::
batch
),
from
(
source
).
to
(
stage
).
with
(
4
,
std
::
vector
<
int
>
{
6
,
7
,
8
,
9
},
1
));
// stage --(stream_msg::batch)--> sink
expect
((
stream_msg
::
batch
),
from
(
stage
).
to
(
sink
).
with
(
3
,
std
::
vector
<
int
>
{
1
,
3
,
5
},
0
));
// sink --(stream_msg::batch)--> stage
expect
((
stream_msg
::
ack_batch
),
from
(
sink
).
to
(
stage
).
with
(
3
,
0
));
// stage --(stream_msg::batch)--> sink
expect
((
stream_msg
::
batch
),
from
(
stage
).
to
(
sink
).
with
(
2
,
std
::
vector
<
int
>
{
7
,
9
},
1
));
// stage --(stream_msg::batch)--> source
expect
((
stream_msg
::
ack_batch
),
from
(
stage
).
to
(
source
).
with
(
4
,
1
));
// sink --(stream_msg::batch)--> stage
expect
((
stream_msg
::
ack_batch
),
from
(
sink
).
to
(
stage
).
with
(
2
,
1
));
// source ----(stream_msg::close)---> stage
expect
((
stream_msg
::
close
),
from
(
source
).
to
(
stage
).
with
());
// stage ----(stream_msg::close)---> sink
expect
((
stream_msg
::
close
),
from
(
stage
).
to
(
sink
).
with
());
// sink ----(result: 25)---> self
expect
((
int
),
from
(
sink
).
to
(
self
).
with
(
25
));
}
}
CAF_TEST
(
broken_pipeline_stramer
)
{
CAF_TEST
(
broken_pipeline_stramer
)
{
...
...
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