From: Mehdi Amini Date: Thu, 3 Nov 2022 21:44:12 +0000 (+0000) Subject: Apply clang-tidy fixes for readability-identifier-naming in MergerTest.cpp (NFC) X-Git-Tag: upstream/17.0.6~27795 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7f917a7645833822fa623f97e330a1b74951197;p=platform%2Fupstream%2Fllvm.git Apply clang-tidy fixes for readability-identifier-naming in MergerTest.cpp (NFC) --- diff --git a/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp b/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp index a9a3725..d274846 100644 --- a/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp +++ b/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp @@ -420,7 +420,7 @@ protected: /// Tests with operation on sparse output. /// -class MergerTest3T1L_SO : public MergerTestBase { +class MergerTest3T1LSo : public MergerTestBase { protected: // Our three tensors (two inputs, one output, one synthetic). const unsigned t0 = 0, t1 = 1, t2 = 2, t3 = 3; @@ -428,7 +428,7 @@ protected: // Our single loop. const unsigned l0 = 0; - MergerTest3T1L_SO() : MergerTestBase(3, 1) { + MergerTest3T1LSo() : MergerTestBase(3, 1) { EXPECT_TRUE(merger.getOutTensorID() == t2); EXPECT_TRUE(merger.getSynTensorID() == t3); @@ -494,7 +494,7 @@ FOREVERY_PAIR_OF_COMMON_CONJ_CONJ_BINOP(IMPL_MERGER_TEST_CONJ_CONJ_UNDEF) /// lat( i_03_U / (tensor_0 * tensor_1 * output_tensor2) ) /// } #define IMPL_MERGER_TEST_CONJ_CONJ_SPARSE_OUT(CONJ1, CONJ2) \ - TEST_F(MergerTest3T1L_SO, vector_##CONJ1##_##CONJ2) { \ + TEST_F(MergerTest3T1LSo, vector_##CONJ1##_##CONJ2) { \ auto em = CONJ1##Expr(t0, t1); \ auto e = CONJ2##Expr(em, t2); \ auto p0 = tensorPattern(t0); \