Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 951a240

Browse files
committed
Simplified multiexp test to make CI runs faster #288
1 parent 4f3c047 commit 951a240

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libs/algebra/test/multiexp.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,12 @@ BOOST_AUTO_TEST_SUITE(multiexp_test_suite)
158158

159159
BOOST_AUTO_TEST_CASE(multiexp_test_case) {
160160

161+
// TODO: These tests look like performance benchmarks. Should be removed from CI
161162
std::cout << "Testing BLS12-381 G1" << std::endl;
162-
print_performance_csv<curves::bls12<381>::g1_type<>, curves::bls12<381>::scalar_field_type>(2, 12, 14, true);
163+
print_performance_csv<curves::bls12<381>::g1_type<>, curves::bls12<381>::scalar_field_type>(2, 4, 6, true);
163164

164165
std::cout << "Testing BLS12-381 G2" << std::endl;
165-
print_performance_csv<curves::bls12<381>::g2_type<>, curves::bls12<381>::scalar_field_type>(2, 12, 14, true);
166+
print_performance_csv<curves::bls12<381>::g2_type<>, curves::bls12<381>::scalar_field_type>(2, 4, 6, true);
166167
}
167168

168169
BOOST_AUTO_TEST_SUITE_END()

0 commit comments

Comments
 (0)