Skip to content

Commit

Permalink
Removed circuit5 from tests #63
Browse files Browse the repository at this point in the history
  • Loading branch information
vo-nil committed Dec 6, 2023
1 parent c080cd6 commit c85f0a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions test/placeholder_common_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ BOOST_AUTO_TEST_SUITE(placeholder_circuit2)

BOOST_AUTO_TEST_CASE(common_data_marshalling_test) {
auto pi0 = nil::crypto3::algebra::random_element<field_type>();
auto circuit = circuit_test_t<field_type>(pi0, test_global_alg_rnd_engine<field_type>);
auto circuit = circuit_test_t<field_type>(pi0, test_global_alg_rnd_engine<field_type>, test_global_rnd_engine);

plonk_table_description<field_type, typename circuit_t_params::arithmetization_params> desc;
desc.rows_amount = table_rows;
Expand Down Expand Up @@ -501,6 +501,7 @@ BOOST_FIXTURE_TEST_CASE(proof_marshalling_test, test_initializer) {
}
BOOST_AUTO_TEST_SUITE_END()

#if 0
BOOST_AUTO_TEST_SUITE(placeholder_circuit5)
using Endianness = nil::marshalling::option::big_endian;
using TTypeBase = nil::marshalling::field_type<Endianness>;
Expand Down Expand Up @@ -580,7 +581,7 @@ BOOST_AUTO_TEST_CASE(common_data_marshalling_test) {
test_placeholder_common_data<common_data_type>(lpc_preprocessed_public_data.common_data);
}
BOOST_AUTO_TEST_SUITE_END()

#endif

BOOST_AUTO_TEST_SUITE(placeholder_circuit6)
using Endianness = nil::marshalling::option::big_endian;
Expand Down
5 changes: 3 additions & 2 deletions test/plonk_assignment_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ BOOST_AUTO_TEST_SUITE(placeholder_circuit2)

BOOST_FIXTURE_TEST_CASE(assignment_table_marshalling_test, test_initializer) {
auto pi0 = nil::crypto3::algebra::random_element<field_type>();
auto circuit = circuit_test_t<field_type>(pi0, test_global_alg_rnd_engine<field_type>);
auto circuit = circuit_test_t<field_type>(pi0, test_global_alg_rnd_engine<field_type>, test_global_rnd_engine);

plonk_table_description<field_type, typename circuit_t_params::arithmetization_params> desc;
desc.rows_amount = table_rows;
Expand Down Expand Up @@ -466,6 +466,7 @@ BOOST_FIXTURE_TEST_CASE(assignment_table_marshalling_test, test_initializer) {
}
BOOST_AUTO_TEST_SUITE_END()

#if 0
BOOST_AUTO_TEST_SUITE(placeholder_circuit5)
using Endianness = nil::marshalling::option::big_endian;
using TTypeBase = nil::marshalling::field_type<Endianness>;
Expand Down Expand Up @@ -531,7 +532,7 @@ BOOST_FIXTURE_TEST_CASE(assignment_table_marshalling_test, test_initializer) {
test_assignment_table<Endianness, typename policy_type::variable_assignment_type>(desc.usable_rows_amount, assignments);
}
BOOST_AUTO_TEST_SUITE_END()

#endif

BOOST_AUTO_TEST_SUITE(placeholder_circuit6)
using Endianness = nil::marshalling::option::big_endian;
Expand Down
5 changes: 3 additions & 2 deletions test/plonk_constraint_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ BOOST_AUTO_TEST_SUITE(placeholder_circuit2)

BOOST_FIXTURE_TEST_CASE(constraint_system_marshalling_test, test_initializer) {
auto pi0 = nil::crypto3::algebra::random_element<field_type>();
auto circuit = circuit_test_t<field_type>(pi0, test_global_alg_rnd_engine<field_type>);
auto circuit = circuit_test_t<field_type>(pi0, test_global_alg_rnd_engine<field_type>, test_global_rnd_engine);

plonk_table_description<field_type, typename circuit_t_params::arithmetization_params> desc;
desc.rows_amount = table_rows;
Expand Down Expand Up @@ -401,6 +401,7 @@ BOOST_FIXTURE_TEST_CASE(constraint_system_marshalling_test, test_initializer) {
}
BOOST_AUTO_TEST_SUITE_END()

#if 0
BOOST_AUTO_TEST_SUITE(placeholder_circuit5)
using Endianness = nil::marshalling::option::big_endian;
using TTypeBase = nil::marshalling::field_type<Endianness>;
Expand Down Expand Up @@ -466,7 +467,7 @@ BOOST_FIXTURE_TEST_CASE(constraint_system_marshalling_test, test_initializer) {
test_constraint_system<Endianness, typename policy_type::constraint_system_type>(constraint_system);
}
BOOST_AUTO_TEST_SUITE_END()

#endif

BOOST_AUTO_TEST_SUITE(placeholder_circuit6)
using Endianness = nil::marshalling::option::big_endian;
Expand Down

0 comments on commit c85f0a1

Please sign in to comment.