You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ch...@apache.org on 2018/08/22 16:37:20 UTC

[mesos] branch master updated: Disabled flaky SLRP tests.

This is an automated email from the ASF dual-hosted git repository.

chhsiao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 336477f  Disabled flaky SLRP tests.
336477f is described below

commit 336477f07144670cf803be0cc4aa673984c90b55
Author: Chun-Hung Hsiao <ch...@mesosphere.io>
AuthorDate: Wed Aug 22 09:37:10 2018 -0700

    Disabled flaky SLRP tests.
---
 src/tests/storage_local_resource_provider_tests.cpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/tests/storage_local_resource_provider_tests.cpp b/src/tests/storage_local_resource_provider_tests.cpp
index 9b88d36..d78ecbc 100644
--- a/src/tests/storage_local_resource_provider_tests.cpp
+++ b/src/tests/storage_local_resource_provider_tests.cpp
@@ -368,7 +368,7 @@ TEST_F(StorageLocalResourceProviderTest, ROOT_NoResource)
 
 // This test verifies that any zero-sized volume reported by a CSI
 // plugin will be ignored by the storage local resource provider.
-TEST_F(StorageLocalResourceProviderTest, ROOT_ZeroSizedDisk)
+TEST_F(StorageLocalResourceProviderTest, DISABLED_ROOT_ZeroSizedDisk)
 {
   Clock::pause();
 
@@ -424,7 +424,7 @@ TEST_F(StorageLocalResourceProviderTest, ROOT_ZeroSizedDisk)
 
 // This test verifies that the storage local resource provider can
 // handle disks less than 1MB correctly.
-TEST_F(StorageLocalResourceProviderTest, ROOT_SmallDisk)
+TEST_F(StorageLocalResourceProviderTest, DISABLED_ROOT_SmallDisk)
 {
   const string profilesPath = path::join(sandbox.get(), "profiles.json");
   ASSERT_SOME(os::write(profilesPath, createDiskProfileMapping("test")));
@@ -842,7 +842,8 @@ TEST_F(StorageLocalResourceProviderTest, ROOT_CreateDestroyDisk)
 
 // This test verifies that the storage local resource provider can
 // destroy a volume created from a storage pool after recovery.
-TEST_F(StorageLocalResourceProviderTest, ROOT_CreateDestroyDiskRecovery)
+TEST_F(
+    StorageLocalResourceProviderTest, DISABLED_ROOT_CreateDestroyDiskRecovery)
 {
   const string profilesPath = path::join(sandbox.get(), "profiles.json");
   ASSERT_SOME(os::write(profilesPath, createDiskProfileMapping("test")));