aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testkit-time_bomb/testkit-time_bomb_test.cpp
blob: 2c43ed574c53f23fe881e97750a4b1309c27bd4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/vespalib/testkit/time_bomb.h>

TEST_MT_F("use time bomb in multi-threaded test", 4, vespalib::TimeBomb(60)) {
    EXPECT_TRUE(true);
}

TEST_MAIN() { TEST_RUN_ALL(); }