From b44b9b989ef2ad8e9c94573e02e70a5b0c848af6 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Tue, 18 Oct 2022 01:39:07 +0800 Subject: [PATCH] tools/replay: reduce test running time (#26110) old-commit-hash: 6d07268ee5b385010961eab206b0b42a0ae6b5f8 --- tools/replay/tests/test_replay.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/replay/tests/test_replay.cc b/tools/replay/tests/test_replay.cc index 5b61b6b6f2..3fd410bb6e 100644 --- a/tools/replay/tests/test_replay.cc +++ b/tools/replay/tests/test_replay.cc @@ -207,8 +207,7 @@ void TestReplay::test_seek() { } TEST_CASE("Replay") { - auto flag = GENERATE(REPLAY_FLAG_NO_FILE_CACHE, REPLAY_FLAG_NONE); - TestReplay replay(DEMO_ROUTE, flag); + TestReplay replay(DEMO_ROUTE, (uint8_t)REPLAY_FLAG_NO_VIPC); REQUIRE(replay.load()); replay.test_seek(); }