aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@oath.com>2019-02-01 16:39:20 +0100
committerGitHub <noreply@github.com>2019-02-01 16:39:20 +0100
commitcc7f508288a991a8580bfdff86b4d2f408cc9c29 (patch)
tree2fa75c7b3f1dd899769c6598c3f00fe28b3df36f /vespajlib/src/test/java/com
parent809e726cb714fd357eec4de4553e0b5d331423ba (diff)
parent1e8a2974fc3e7b756c966eda3cc3d94efd850f64 (diff)
Merge pull request #8247 from vespa-engine/hakonhall/terminate-standalone-container-cleanly-on-sigintcontrol-c
Terminate standalone container cleanly on SIGINT/control-C
Diffstat (limited to 'vespajlib/src/test/java/com')
-rw-r--r--vespajlib/src/test/java/com/yahoo/system/CatchSigTermTestCase.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/vespajlib/src/test/java/com/yahoo/system/CatchSigTermTestCase.java b/vespajlib/src/test/java/com/yahoo/system/CatchSigTermTestCase.java
deleted file mode 100644
index 9b370d4ce10..00000000000
--- a/vespajlib/src/test/java/com/yahoo/system/CatchSigTermTestCase.java
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.system;
-
-import org.junit.Test;
-
-import java.util.concurrent.atomic.AtomicBoolean;
-
-/**
- * @author arnej27959
- */
-public class CatchSigTermTestCase {
-
- @Test
- public void testThatSetupCompiles() {
- CatchSigTerm.setup(new AtomicBoolean(false));
- }
-
-}