From 41b00ca46eeec04d69a661c1a5cb3368bf653f7a Mon Sep 17 00:00:00 2001 From: Alessio Balsini Date: Tue, 18 Feb 2020 15:51:11 +0000 Subject: [PATCH] libsnapshot: Temporarily disable flaky ImageManagerTest This test was causing the failure of vts_libsnapshot_test. Disable until a fix is found and tests are stable again. Bug: 149738928 Test: atests vts_libsnapshot_test Change-Id: Ibbe5cd72aad93d9ade4ac1542f08dec9cd926a3b Signed-off-by: Alessio Balsini --- fs_mgr/libsnapshot/snapshot_test.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fs_mgr/libsnapshot/snapshot_test.cpp b/fs_mgr/libsnapshot/snapshot_test.cpp index d87274d8e..5d2840f99 100644 --- a/fs_mgr/libsnapshot/snapshot_test.cpp +++ b/fs_mgr/libsnapshot/snapshot_test.cpp @@ -1767,6 +1767,7 @@ class ImageManagerTest : public SnapshotTest, public WithParamInterface(); @@ -1774,6 +1775,7 @@ class ImageManagerTest : public SnapshotTest, public WithParamInterfaceBackingImageExists(kImageName) || image_manager_->DeleteBackingImage(kImageName)); @@ -1808,10 +1810,6 @@ std::vector ImageManagerTestParams() { std::vector ret; for (uint64_t size = 1_MiB; size <= 512_MiB; size *= 2) { ret.push_back(size); -#ifdef SKIP_TEST_IN_PRESUBMIT - // BUG(148889015); - break; -#endif } return ret; }