summaryrefslogtreecommitdiffstats
path: root/messagebus_test/src/tests/compile-java
diff options
context:
space:
mode:
Diffstat (limited to 'messagebus_test/src/tests/compile-java')
-rw-r--r--messagebus_test/src/tests/compile-java/.gitignore4
-rw-r--r--messagebus_test/src/tests/compile-java/CMakeLists.txt2
-rw-r--r--messagebus_test/src/tests/compile-java/DESC2
-rw-r--r--messagebus_test/src/tests/compile-java/FILES1
-rw-r--r--messagebus_test/src/tests/compile-java/TestCompile.java9
-rwxr-xr-xmessagebus_test/src/tests/compile-java/compile-java_test.sh12
6 files changed, 0 insertions, 30 deletions
diff --git a/messagebus_test/src/tests/compile-java/.gitignore b/messagebus_test/src/tests/compile-java/.gitignore
deleted file mode 100644
index d615ebbafe7..00000000000
--- a/messagebus_test/src/tests/compile-java/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-*.class
-.depend
-Makefile
-compile-java_test
diff --git a/messagebus_test/src/tests/compile-java/CMakeLists.txt b/messagebus_test/src/tests/compile-java/CMakeLists.txt
deleted file mode 100644
index f13175939f6..00000000000
--- a/messagebus_test/src/tests/compile-java/CMakeLists.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_test(NAME messagebus_test_compile-java_test NO_VALGRIND COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/compile-java_test.sh)
diff --git a/messagebus_test/src/tests/compile-java/DESC b/messagebus_test/src/tests/compile-java/DESC
deleted file mode 100644
index 465d625ca9e..00000000000
--- a/messagebus_test/src/tests/compile-java/DESC
+++ /dev/null
@@ -1,2 +0,0 @@
-simple compilation test to check dependencies.
-
diff --git a/messagebus_test/src/tests/compile-java/FILES b/messagebus_test/src/tests/compile-java/FILES
deleted file mode 100644
index 5b154bb1605..00000000000
--- a/messagebus_test/src/tests/compile-java/FILES
+++ /dev/null
@@ -1 +0,0 @@
-TestCompile.java
diff --git a/messagebus_test/src/tests/compile-java/TestCompile.java b/messagebus_test/src/tests/compile-java/TestCompile.java
deleted file mode 100644
index 443ae093794..00000000000
--- a/messagebus_test/src/tests/compile-java/TestCompile.java
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-import com.yahoo.messagebus.EmptyReply;
-
-public class TestCompile {
- public static void main(String[] args) {
- EmptyReply er = new EmptyReply();
- }
-}
diff --git a/messagebus_test/src/tests/compile-java/compile-java_test.sh b/messagebus_test/src/tests/compile-java/compile-java_test.sh
deleted file mode 100755
index d99e3e841e5..00000000000
--- a/messagebus_test/src/tests/compile-java/compile-java_test.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-set -e
-
-if [ -z "$SOURCE_DIRECTORY" ]; then
- SOURCE_DIRECTORY="."
-fi
-
-. ../../binref/env.sh
-
-$BINREF/compilejava $SOURCE_DIRECTORY/TestCompile.java
-$BINREF/runjava TestCompile
-