aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLasse Kaihlavirta <l.kaihlavirt@partner.samsung.com>2021-01-04 09:15:19 +0000
committerGerrit Code Review <gerrit@onap.org>2021-01-04 09:15:19 +0000
commitfedb1804c8a90e05e6818fee9f59671cdf732ce7 (patch)
tree19c2a54af79a123f8ac1d1d0b1f62e38512ee156 /tests
parentd8a8c64b8863d55ec4231c4777ecec91b05ed670 (diff)
parent7beb62fb72d5912e3a537c6d2f69911105f8a06e (diff)
Merge "Remove ccsdk CSIT (moved to project)"
Diffstat (limited to 'tests')
-rw-r--r--tests/ccsdk/healthcheck/__init__.robot2
-rw-r--r--tests/ccsdk/healthcheck/test1.robot16
2 files changed, 0 insertions, 18 deletions
diff --git a/tests/ccsdk/healthcheck/__init__.robot b/tests/ccsdk/healthcheck/__init__.robot
deleted file mode 100644
index 1259b890..00000000
--- a/tests/ccsdk/healthcheck/__init__.robot
+++ /dev/null
@@ -1,2 +0,0 @@
-*** Settings ***
-Documentation CCSDK - healthcheck
diff --git a/tests/ccsdk/healthcheck/test1.robot b/tests/ccsdk/healthcheck/test1.robot
deleted file mode 100644
index fea86c3d..00000000
--- a/tests/ccsdk/healthcheck/test1.robot
+++ /dev/null
@@ -1,16 +0,0 @@
-*** Settings ***
-Library OperatingSystem
-Library Process
-
-*** Variables ***
-
-${health_check} ${SCRIPTS}/ccsdk/healthcheck/health_check.sh
-
-
-*** Test Cases ***
-Health check test case for CCSDK
- [Documentation] Health check
- ${result_hc}= Run Process bash ${health_check} > log_hc.txt shell=yes
- Should Be Equal As Integers ${result_hc.rc} 0
-
-