Skip to content

Commit

Permalink
Reed to rename suite in declaration too
Browse files Browse the repository at this point in the history
  • Loading branch information
codygunton committed Sep 24, 2024
1 parent f72bcb1 commit 85e1f78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ template <typename OuterComposer> class stdlib_verifier_SKIP_CI : public testing

typedef testing::Types<plonk::StandardComposer, plonk::UltraComposer> OuterComposerTypes;

TYPED_TEST_SUITE(stdlib_verifier, OuterComposerTypes);
TYPED_TEST_SUITE(stdlib_verifier_SKIP_CI, OuterComposerTypes);

HEAVY_TYPED_TEST(stdlib_verifier_SKIP_CI, test_inner_circuit)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ template <typename Builder> class stdlib_bigfield_SKIP_CI : public testing::Test
// Define types for which the above tests will be constructed.
using CircuitTypes = testing::Types<bb::StandardCircuitBuilder, bb::UltraCircuitBuilder, bb::CircuitSimulatorBN254>;
// Define the suite of tests.
TYPED_TEST_SUITE(stdlib_bigfield, CircuitTypes);
TYPED_TEST_SUITE(stdlib_bigfield_SKIP_CI, CircuitTypes);
TYPED_TEST(stdlib_bigfield_SKIP_CI, badmul)
{
TestFixture::test_division_formula_bug();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ using TestTypes = testing::Types<TestType<stdlib::bn254<bb::StandardCircuitBuild
TestType<stdlib::bn254<bb::MegaCircuitBuilder>, UseBigfield::No>,
TestType<stdlib::bn254<bb::CircuitSimulatorBN254>, UseBigfield::No>>;

TYPED_TEST_SUITE(stdlib_biggroup, TestTypes);
TYPED_TEST_SUITE(stdlib_biggroup_SKIP_CI, TestTypes);

TYPED_TEST(stdlib_biggroup_SKIP_CI, add)
{
Expand Down

0 comments on commit 85e1f78

Please sign in to comment.