summaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp')
-rw-r--r--staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp b/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
index 79777cdd53f..348e9bbd503 100644
--- a/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
+++ b/staging_vespalib/src/tests/shutdownguard/shutdownguard_test.cpp
@@ -1,6 +1,7 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/vespalib/util/shutdownguard.h>
+#include <vespa/vespalib/util/malloc_mmap_guard.h>
#include <thread>
#include <unistd.h>
#include <sys/wait.h>
@@ -8,12 +9,8 @@
using namespace vespalib;
-TEST_SETUP(Test);
-
-int
-Test::Main()
+TEST("test shutdown guard")
{
- TEST_INIT("shutdownguard_test");
{
ShutdownGuard farFuture(1000000s);
std::this_thread::sleep_for(20ms);
@@ -37,5 +34,10 @@ Test::Main()
}
EXPECT_TRUE(i < 800);
}
- TEST_DONE();
}
+
+TEST("test malloc mmap guard") {
+ MallocMmapGuard guard(0x100000);
+}
+
+TEST_MAIN() { TEST_RUN_ALL(); }