Skip to content

Commit

Permalink
Fix incorrect tests
Browse files Browse the repository at this point in the history
Github-Pull: bitcoin#13545
Rebased-From: c6fd0df
  • Loading branch information
practicalswift authored and MarcoFalke committed Jul 13, 2018
1 parent 170b309 commit 1062199
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/test/streams_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,17 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor)

// Degenerate case

key += '\x00','\x00';
key += '\x00';
key += '\x00';
ds.Xor(key);
BOOST_CHECK_EQUAL(
std::string(expected_xor.begin(), expected_xor.end()),
std::string(ds.begin(), ds.end()));

in += '\x0f','\xf0';
expected_xor += '\xf0','\x0f';
in += '\x0f';
in += '\xf0';
expected_xor += '\xf0';
expected_xor += '\x0f';

// Single character key

Expand All @@ -105,14 +108,17 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor)

in.clear();
expected_xor.clear();
in += '\xf0','\x0f';
expected_xor += '\x0f','\x00';
in += '\xf0';
in += '\x0f';
expected_xor += '\x0f';
expected_xor += '\x00';

ds.clear();
ds.insert(ds.begin(), in.begin(), in.end());

key.clear();
key += '\xff','\x0f';
key += '\xff';
key += '\x0f';

ds.Xor(key);
BOOST_CHECK_EQUAL(
Expand Down

0 comments on commit 1062199

Please sign in to comment.