Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Sep 4, 2024
1 parent 1f7dbf6 commit 12ca0c9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crypto3/libs/blueprint/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ set(PLONK_TESTS_FILES
"verifiers/flexible/poseidon"
"verifiers/flexible/constant_pow"
"verifiers/flexible/pow_factor"
#"verifiers/placeholder/verifier"
"verifiers/placeholder/verifier"
"zkevm/bytecode"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include <iostream>
#include <fstream>
#include <cstdint>

#include <boost/test/unit_test.hpp>

Expand Down
1 change: 1 addition & 0 deletions crypto3/libs/containers/test/merkle/merkle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
#include <cstdio>
#include <limits>
#include <type_traits>
#include <cstdint>
#include <nil/crypto3/hash/algorithm/hash.hpp>

using namespace nil::crypto3;
Expand Down
3 changes: 2 additions & 1 deletion crypto3/libs/hash/test/crc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <iostream>
#include <string>
#include <cassert>
#include <cstdint>
#include <unordered_map>

using namespace nil::crypto3;
Expand Down Expand Up @@ -130,4 +131,4 @@ BOOST_AUTO_TEST_CASE(crc_stateful_hash3) {
BOOST_CHECK_EQUAL(d, "a7943e77");
}

BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
3 changes: 2 additions & 1 deletion crypto3/libs/hash/test/tiger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
#include <unordered_map>

#include <cstdio>
#include <cstdint>

using namespace nil::crypto3;
using namespace nil::crypto3::accumulators;
Expand Down Expand Up @@ -155,4 +156,4 @@ BOOST_AUTO_TEST_CASE(tiger_iterator_hash7) {
BOOST_CHECK_EQUAL("1c14795529fd9f207a958f84c52f11e887fa0cabdfd91bfd", out);
}

BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
1 change: 1 addition & 0 deletions crypto3/libs/random/test/rfc6979.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <sstream>
#include <cstdlib>
#include <ctime>
#include <cstdint>

#include <boost/test/unit_test.hpp>

Expand Down

0 comments on commit 12ca0c9

Please sign in to comment.