Skip to content

Commit

Permalink
iox-#482 fix integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Marika Lehmann <[email protected]>
  • Loading branch information
FerdinandSpitzschnueffler committed Apr 23, 2021
1 parent fde685e commit a8d8f25
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions iceoryx_examples/complexdata/iox_subscriber_complexdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ int main()
}
}

s << std::endl << std::endl;
std::cout << s.str();
std::cout << s.str() << std::endl << std::endl;
})
.or_else([](auto& result) {
// only has to be called if the alternative is of interest,
Expand Down
3 changes: 1 addition & 2 deletions iceoryx_examples/complexdata/iox_subscriber_vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ int main()
separator = ", ";
}

s << std::endl;
std::cout << s.str();
std::cout << s.str() << std::endl;
})
.or_else([](auto& result) {
// only has to be called if the alternative is of interest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ def generate_test_description():
# the launch system will shut down RouDi


class TestIcedeliveryExample(unittest.TestCase):
class TestComplexDataExample(unittest.TestCase):
def test_roudi_ready(self, proc_output):
proc_output.assertWaitFor(
'RouDi is ready for clients', timeout=45, stream='stdout')

def test_publisher_subscriber_data_exchange(self, proc_output):
proc_output.assertWaitFor(
'iox-cpp-subscriber-vector got value: 15, 16, 17, 18, 19', timeout=45, stream='stdout')
'iox-cpp-subscriber-vector got values: 15, 16, 17, 18, 19', timeout=45, stream='stdout')

def test_publisher_subscriber_untyped_data_exchange(self, proc_output):
proc_output.assertWaitFor(
Expand Down

0 comments on commit a8d8f25

Please sign in to comment.