Skip to content

Commit

Permalink
fix duplicated test name, refs #2138
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 631475295
  • Loading branch information
jan-wassenberg authored and copybara-github committed May 7, 2024
1 parent 05834f7 commit 7430a87
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions hwy/tests/mask_mem_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -386,14 +386,14 @@ HWY_AFTER_NAMESPACE();
#if HWY_ONCE

namespace hwy {
HWY_BEFORE_TEST(HwyMaskTest);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllMaskedLoad);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllMaskedScatter);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllScatterIndexN);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllMaskedGather);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllGatherIndexN);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllBlendedStore);
HWY_EXPORT_AND_TEST_P(HwyMaskTest, TestAllStoreMaskBits);
HWY_BEFORE_TEST(HwyMaskMemTest);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllMaskedLoad);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllMaskedScatter);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllScatterIndexN);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllMaskedGather);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllGatherIndexN);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllBlendedStore);
HWY_EXPORT_AND_TEST_P(HwyMaskMemTest, TestAllStoreMaskBits);
HWY_AFTER_TEST();
} // namespace hwy

Expand Down

0 comments on commit 7430a87

Please sign in to comment.