#include "mlir/Debug/Counter.h"
#include "mlir/Support/TypeID.h"
#include "gmock/gmock.h"
using namespace mlir;
using namespace mlir::tracing;
namespace {
struct CounterAction : public ActionImpl<CounterAction> {
MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(CounterAction)
static constexpr StringLiteral tag = "counter-action";
};
TEST(DebugCounterTest, CounterTest) {
DebugCounter counter;
counter.addCounter(CounterAction::tag, 1,
3);
int count = 0;
auto noOp = [&]() {
++count;
return;
};
counter(noOp, CounterAction{});
EXPECT_EQ(count, 0);
counter(noOp, CounterAction{});
EXPECT_EQ(count, 1);
counter(noOp, CounterAction{});
EXPECT_EQ(count, 2);
counter(noOp, CounterAction{});
EXPECT_EQ(count, 3);
counter(noOp, CounterAction{});
EXPECT_EQ(count, 3);
}
}