aboutsummaryrefslogtreecommitdiff
path: root/tests/test_resources
diff options
context:
space:
mode:
authorDmitrii Agibov <dmitrii.agibov@arm.com>2023-01-27 09:12:50 +0000
committerBenjamin Klimczak <benjamin.klimczak@arm.com>2023-02-08 15:25:11 +0000
commit3e3dcb9bd5abb88adcd85b4f89e8a81e7f6fa293 (patch)
tree020eee6abef093113de5b49c135c915c37173843 /tests/test_resources
parent836efd40317a397761ec8b66e3f4398faac43ad0 (diff)
downloadmlia-3e3dcb9bd5abb88adcd85b4f89e8a81e7f6fa293.tar.gz
MLIA-595 Remove old backend configuration mechanism
- Remove old backend configuration code - Install backends into directory ~/.mlia - Rename targets/backends in registry to make it consistent across codebase. Change-Id: I9c8b012fe863280f1c692940c0dcad3ef638aaae
Diffstat (limited to 'tests/test_resources')
-rw-r--r--tests/test_resources/application_config.json94
-rw-r--r--tests/test_resources/application_config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application1/backend-config.json29
-rw-r--r--tests/test_resources/backends/applications/application1/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application2/backend-config.json29
-rw-r--r--tests/test_resources/backends/applications/application2/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application3/readme.txt4
-rw-r--r--tests/test_resources/backends/applications/application4/backend-config.json33
-rw-r--r--tests/test_resources/backends/applications/application4/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application5/backend-config.json134
-rw-r--r--tests/test_resources/backends/applications/application5/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application6/backend-config.json41
-rw-r--r--tests/test_resources/backends/applications/application6/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/readme.txt4
-rw-r--r--tests/test_resources/backends/systems/system1/backend-config.json24
-rw-r--r--tests/test_resources/backends/systems/system1/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/systems/system1/system_artifact/empty.txt2
-rw-r--r--tests/test_resources/backends/systems/system2/backend-config.json24
-rw-r--r--tests/test_resources/backends/systems/system2/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/systems/system3/readme.txt4
-rw-r--r--tests/test_resources/backends/systems/system4/backend-config.json15
-rw-r--r--tests/test_resources/backends/systems/system4/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/systems/system6/backend-config.json30
-rw-r--r--tests/test_resources/backends/systems/system6/backend-config.json.license3
-rw-r--r--tests/test_resources/hello_world.json53
-rw-r--r--tests/test_resources/hello_world.json.license3
-rwxr-xr-xtests/test_resources/scripts/test_backend_run8
-rw-r--r--tests/test_resources/scripts/test_backend_run_script.sh8
-rw-r--r--tests/test_resources/various/applications/application_with_empty_config/backend-config.json1
-rw-r--r--tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_valid_config/backend-config.json37
-rw-r--r--tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json2
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json32
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json37
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license3
-rw-r--r--tests/test_resources/various/systems/system_with_empty_config/backend-config.json1
-rw-r--r--tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license3
-rw-r--r--tests/test_resources/various/systems/system_with_valid_config/backend-config.json12
-rw-r--r--tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license3
42 files changed, 0 insertions, 712 deletions
diff --git a/tests/test_resources/application_config.json b/tests/test_resources/application_config.json
deleted file mode 100644
index 8c5d2b5..0000000
--- a/tests/test_resources/application_config.json
+++ /dev/null
@@ -1,94 +0,0 @@
-[
- {
- "name": "application_1",
- "description": "application number one",
- "supported_systems": [
- "system_1",
- "system_2"
- ],
- "commands": {
- "clean": [
- "clean_cmd_11"
- ],
- "build": [
- "build_cmd_11"
- ],
- "run": [
- "run_cmd_11"
- ],
- "post_run": [
- "post_run_cmd_11"
- ]
- },
- "user_params": {
- "run": [
- {
- "name": "run_param_11",
- "values": [],
- "description": "run param number one"
- }
- ],
- "build": [
- {
- "name": "build_param_11",
- "values": [],
- "description": "build param number one"
- },
- {
- "name": "build_param_12",
- "values": [],
- "description": "build param number two"
- },
- {
- "name": "build_param_13",
- "values": [
- "value_1"
- ],
- "description": "build param number three with some value"
- }
- ]
- }
- },
- {
- "name": "application_2",
- "description": "application number two",
- "supported_systems": [
- "system_2"
- ],
- "commands": {
- "clean": [
- "clean_cmd_21"
- ],
- "build": [
- "build_cmd_21",
- "build_cmd_22"
- ],
- "run": [
- "run_cmd_21"
- ],
- "post_run": [
- "post_run_cmd_21"
- ]
- },
- "user_params": {
- "build": [
- {
- "name": "build_param_21",
- "values": [],
- "description": "build param number one"
- },
- {
- "name": "build_param_22",
- "values": [],
- "description": "build param number two"
- },
- {
- "name": "build_param_23",
- "values": [],
- "description": "build param number three"
- }
- ],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/application_config.json.license b/tests/test_resources/application_config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/application_config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application1/backend-config.json b/tests/test_resources/backends/applications/application1/backend-config.json
deleted file mode 100644
index 96d5420..0000000
--- a/tests/test_resources/backends/applications/application1/backend-config.json
+++ /dev/null
@@ -1,29 +0,0 @@
-[
- {
- "name": "application_1",
- "description": "This is application 1",
- "supported_systems": [
- {
- "name": "System 1"
- }
- ],
- "commands": {
- "clean": [
- "echo 'clean'"
- ],
- "build": [
- "echo 'build'"
- ],
- "run": [
- "echo 'run'"
- ],
- "post_run": [
- "echo 'post_run'"
- ]
- },
- "user_params": {
- "build": [],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/backends/applications/application1/backend-config.json.license b/tests/test_resources/backends/applications/application1/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/applications/application1/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application2/backend-config.json b/tests/test_resources/backends/applications/application2/backend-config.json
deleted file mode 100644
index 3a3969a..0000000
--- a/tests/test_resources/backends/applications/application2/backend-config.json
+++ /dev/null
@@ -1,29 +0,0 @@
-[
- {
- "name": "application_2",
- "description": "This is application 2",
- "supported_systems": [
- {
- "name": "System 2"
- }
- ],
- "commands": {
- "clean": [
- "echo 'clean'"
- ],
- "build": [
- "echo 'build'"
- ],
- "run": [
- "echo 'run'"
- ],
- "post_run": [
- "echo 'post_run'"
- ]
- },
- "user_params": {
- "build": [],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/backends/applications/application2/backend-config.json.license b/tests/test_resources/backends/applications/application2/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/applications/application2/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application3/readme.txt b/tests/test_resources/backends/applications/application3/readme.txt
deleted file mode 100644
index 8c72c05..0000000
--- a/tests/test_resources/backends/applications/application3/readme.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-SPDX-License-Identifier: Apache-2.0
-
-This application does not have json configuration file
diff --git a/tests/test_resources/backends/applications/application4/backend-config.json b/tests/test_resources/backends/applications/application4/backend-config.json
deleted file mode 100644
index 11017e4..0000000
--- a/tests/test_resources/backends/applications/application4/backend-config.json
+++ /dev/null
@@ -1,33 +0,0 @@
-[
- {
- "name": "application_4",
- "description": "This is application 4",
- "variables": {
- "build_dir": "build"
- },
- "supported_systems": [
- {
- "name": "System 4"
- }
- ],
- "commands": {
- "run": [
- "echo {application.name}"
- ]
- },
- "user_params": {
- "run": [
- {
- "name": "--app",
- "description": "Sample command param",
- "values": [
- "application1",
- "application2",
- "application3"
- ],
- "default_value": "application1"
- }
- ]
- }
- }
-]
diff --git a/tests/test_resources/backends/applications/application4/backend-config.json.license b/tests/test_resources/backends/applications/application4/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/applications/application4/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application5/backend-config.json b/tests/test_resources/backends/applications/application5/backend-config.json
deleted file mode 100644
index 219494c..0000000
--- a/tests/test_resources/backends/applications/application5/backend-config.json
+++ /dev/null
@@ -1,134 +0,0 @@
-[
- {
- "name": "application_5",
- "description": "This is application 5",
- "supported_systems": [
- {
- "name": "System 1"
- },
- {
- "name": "System 2"
- }
- ],
- "variables": {
- "var1": "value1",
- "var2": "value2"
- },
- "commands": {
- "build": [
- "default build command"
- ],
- "run": [
- "default run command"
- ]
- },
- "user_params": {
- "build": [],
- "run": []
- }
- },
- {
- "name": "application_5A",
- "description": "This is application 5A",
- "supported_systems": [
- {
- "name": "System 1",
- "variables": {
- "var1": "new value1"
- }
- },
- {
- "name": "System 2",
- "variables": {
- "var2": "new value2"
- },
- "commands": {
- "run": [
- "run command on system 2"
- ]
- }
- }
- ],
- "variables": {
- "var1": "value1",
- "var2": "value2"
- },
- "commands": {
- "build": [
- "default build command"
- ],
- "run": [
- "default run command"
- ]
- },
- "user_params": {
- "build": [],
- "run": []
- }
- },
- {
- "name": "application_5B",
- "description": "This is application 5B",
- "supported_systems": [
- {
- "name": "System 1",
- "variables": {
- "var1": "value for var1 System1",
- "var2": "value for var2 System1"
- }
- },
- {
- "name": "System 2",
- "variables": {
- "var1": "value for var1 System2",
- "var2": "value for var2 System2"
- },
- "commands": {
- "run": [
- "run command on system 2"
- ]
- },
- "user_params": {
- "run": []
- }
- }
- ],
- "commands": {
- "build": [
- "default build command with {variables:var1}"
- ],
- "run": [
- "default run command with {variables:var2}"
- ]
- },
- "user_params": {
- "build": [
- {
- "name": "--param",
- "description": "Sample command param",
- "values": [
- "value1",
- "value2",
- "value3"
- ],
- "default_value": "value1",
- "alias": "param1"
- }
- ],
- "run": [],
- "non_used_command": [
- {
- "name": "--not-used",
- "description": "Not used param anywhere",
- "values": [
- "value1",
- "value2",
- "value3"
- ],
- "default_value": "value1",
- "alias": "param1"
- }
- ]
- }
- }
-]
diff --git a/tests/test_resources/backends/applications/application5/backend-config.json.license b/tests/test_resources/backends/applications/application5/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/applications/application5/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application6/backend-config.json b/tests/test_resources/backends/applications/application6/backend-config.json
deleted file mode 100644
index 81afebd..0000000
--- a/tests/test_resources/backends/applications/application6/backend-config.json
+++ /dev/null
@@ -1,41 +0,0 @@
-[
- {
- "name": "application_6",
- "description": "This is application 6",
- "supported_systems": [
- {
- "name": "System 6"
- }
- ],
- "commands": {
- "clean": [
- "echo 'clean'"
- ],
- "build": [
- "echo 'build'"
- ],
- "run": [
- "echo 'run {user_params:param1}'"
- ],
- "post_run": [
- "echo 'post_run'"
- ]
- },
- "user_params": {
- "build": [],
- "run": [
- {
- "name": "--param1",
- "description": "Test parameter",
- "values": [
- "value1",
- "value2",
- "value3"
- ],
- "default_value": "value3",
- "alias": "param1"
- }
- ]
- }
- }
-]
diff --git a/tests/test_resources/backends/applications/application6/backend-config.json.license b/tests/test_resources/backends/applications/application6/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/applications/application6/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/readme.txt b/tests/test_resources/backends/applications/readme.txt
deleted file mode 100644
index d3e6fe2..0000000
--- a/tests/test_resources/backends/applications/readme.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-SPDX-License-Identifier: Apache-2.0
-
-File for test purposes
diff --git a/tests/test_resources/backends/systems/system1/backend-config.json b/tests/test_resources/backends/systems/system1/backend-config.json
deleted file mode 100644
index 4454695..0000000
--- a/tests/test_resources/backends/systems/system1/backend-config.json
+++ /dev/null
@@ -1,24 +0,0 @@
-[
- {
- "name": "System 1",
- "description": "This is system 1",
- "commands": {
- "clean": [
- "echo 'clean'"
- ],
- "build": [
- "echo 'build'"
- ],
- "run": [
- "echo 'run'"
- ],
- "post_run": [
- "echo 'post_run'"
- ]
- },
- "user_params": {
- "build": [],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/backends/systems/system1/backend-config.json.license b/tests/test_resources/backends/systems/system1/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/systems/system1/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system1/system_artifact/empty.txt b/tests/test_resources/backends/systems/system1/system_artifact/empty.txt
deleted file mode 100644
index 487e9d8..0000000
--- a/tests/test_resources/backends/systems/system1/system_artifact/empty.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system2/backend-config.json b/tests/test_resources/backends/systems/system2/backend-config.json
deleted file mode 100644
index 3359d3d..0000000
--- a/tests/test_resources/backends/systems/system2/backend-config.json
+++ /dev/null
@@ -1,24 +0,0 @@
-[
- {
- "name": "System 2",
- "description": "This is system 2",
- "commands": {
- "clean": [
- "echo 'clean'"
- ],
- "build": [
- "echo 'build'"
- ],
- "run": [
- "echo 'run'"
- ],
- "post_run": [
- "echo 'post_run'"
- ]
- },
- "user_params": {
- "build": [],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/backends/systems/system2/backend-config.json.license b/tests/test_resources/backends/systems/system2/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/systems/system2/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system3/readme.txt b/tests/test_resources/backends/systems/system3/readme.txt
deleted file mode 100644
index aba5a9c..0000000
--- a/tests/test_resources/backends/systems/system3/readme.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-SPDX-License-Identifier: Apache-2.0
-
-This system does not have the json configuration file
diff --git a/tests/test_resources/backends/systems/system4/backend-config.json b/tests/test_resources/backends/systems/system4/backend-config.json
deleted file mode 100644
index daa4025..0000000
--- a/tests/test_resources/backends/systems/system4/backend-config.json
+++ /dev/null
@@ -1,15 +0,0 @@
-[
- {
- "name": "System 4",
- "description": "This is system 4",
- "commands": {
- "run": [
- "echo {system.name}",
- "{application.commands.run:0}"
- ]
- },
- "user_params": {
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/backends/systems/system4/backend-config.json.license b/tests/test_resources/backends/systems/system4/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/systems/system4/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system6/backend-config.json b/tests/test_resources/backends/systems/system6/backend-config.json
deleted file mode 100644
index 5180799..0000000
--- a/tests/test_resources/backends/systems/system6/backend-config.json
+++ /dev/null
@@ -1,30 +0,0 @@
-[
- {
- "name": "System 6",
- "description": "This is system 6",
- "variables": {
- "var1": "{user_params:sys-param1}"
- },
- "commands": {
- "run": [
- "echo {application.name}",
- "{application.commands.run:0}"
- ]
- },
- "user_params": {
- "run": [
- {
- "name": "--sys-param1",
- "description": "Test parameter",
- "values": [
- "value1",
- "value2",
- "value3"
- ],
- "default_value": "value1",
- "alias": "sys-param1"
- }
- ]
- }
- }
-]
diff --git a/tests/test_resources/backends/systems/system6/backend-config.json.license b/tests/test_resources/backends/systems/system6/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/backends/systems/system6/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/hello_world.json b/tests/test_resources/hello_world.json
deleted file mode 100644
index 28d7bd9..0000000
--- a/tests/test_resources/hello_world.json
+++ /dev/null
@@ -1,53 +0,0 @@
-[
- {
- "name": "Hello world",
- "description": "Sample application that displays 'Hello world!'",
- "supported_systems": [
- "Sample System"
- ],
- "deploy_data": [
- [
- "src",
- "/tmp/"
- ],
- [
- "README",
- "/tmp/README.md"
- ]
- ],
- "commands": {
- "clean": [],
- "build": [],
- "run": [
- "echo 'Hello world!'",
- "ls -l /tmp"
- ],
- "post_run": []
- },
- "user_params": {
- "run": [
- {
- "name": "--choice-param",
- "values": [
- "value_1",
- "value_2"
- ],
- "default_value": "value_1",
- "description": "Choice param"
- },
- {
- "name": "--open-param",
- "values": [],
- "default_value": "value_4",
- "description": "Open param"
- },
- {
- "name": "--enable-flag",
- "default_value": "value_4",
- "description": "Flag param"
- }
- ],
- "build": []
- }
- }
-]
diff --git a/tests/test_resources/hello_world.json.license b/tests/test_resources/hello_world.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/hello_world.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/scripts/test_backend_run b/tests/test_resources/scripts/test_backend_run
deleted file mode 100755
index 548f577..0000000
--- a/tests/test_resources/scripts/test_backend_run
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-# SPDX-License-Identifier: Apache-2.0
-
-echo "Hello from script"
->&2 echo "Oops!"
-sleep 100
diff --git a/tests/test_resources/scripts/test_backend_run_script.sh b/tests/test_resources/scripts/test_backend_run_script.sh
deleted file mode 100644
index 548f577..0000000
--- a/tests/test_resources/scripts/test_backend_run_script.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-# SPDX-License-Identifier: Apache-2.0
-
-echo "Hello from script"
->&2 echo "Oops!"
-sleep 100
diff --git a/tests/test_resources/various/applications/application_with_empty_config/backend-config.json b/tests/test_resources/various/applications/application_with_empty_config/backend-config.json
deleted file mode 100644
index fe51488..0000000
--- a/tests/test_resources/various/applications/application_with_empty_config/backend-config.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
diff --git a/tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license b/tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/various/applications/application_with_valid_config/backend-config.json b/tests/test_resources/various/applications/application_with_valid_config/backend-config.json
deleted file mode 100644
index a457d9b..0000000
--- a/tests/test_resources/various/applications/application_with_valid_config/backend-config.json
+++ /dev/null
@@ -1,37 +0,0 @@
-[
- {
- "name": "test_application",
- "description": "This is test_application",
- "variables": {
- "build_dir": "build"
- },
- "supported_systems": [
- {
- "name": "System 4"
- }
- ],
- "commands": {
- "build": [
- "cp ../hello_app.txt ."
- ],
- "run": [
- "{application.variables:build_dir}/hello_app.txt"
- ]
- },
- "user_params": {
- "build": [
- {
- "name": "--app",
- "description": "Sample command param",
- "values": [
- "application1",
- "application2",
- "application3"
- ],
- "default_value": "application1"
- }
- ],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license b/tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json b/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json
deleted file mode 100644
index 724b31b..0000000
--- a/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json
+++ /dev/null
@@ -1,2 +0,0 @@
-This is not valid json file
-{
diff --git a/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license b/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json b/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json
deleted file mode 100644
index b64e6f8..0000000
--- a/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json
+++ /dev/null
@@ -1,32 +0,0 @@
-[
- {
- "name": "test_application",
- "description": "This is test_application",
- "variables": {
- "build_dir": "build"
- },
- "commands": {
- "build": [
- "cp ../hello_app.txt ."
- ],
- "run": [
- "{application.variables:build_dir}/hello_app.txt"
- ]
- },
- "user_params": {
- "build": [
- {
- "name": "--app",
- "description": "Sample command param",
- "values": [
- "application1",
- "application2",
- "application3"
- ],
- "default_value": "application1"
- }
- ],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license b/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json b/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json
deleted file mode 100644
index 4a70cdd..0000000
--- a/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json
+++ /dev/null
@@ -1,37 +0,0 @@
-[
- {
- "name": "test_application",
- "description": "This is test_application",
- "variables": {
- "build_dir": "build"
- },
- "supported_systems": [
- {
- "anme": "System 4"
- }
- ],
- "commands": {
- "build": [
- "cp ../hello_app.txt ."
- ],
- "run": [
- "{application.variables:build_dir}/hello_app.txt"
- ]
- },
- "user_params": {
- "build": [
- {
- "name": "--app",
- "description": "Sample command param",
- "values": [
- "application1",
- "application2",
- "application3"
- ],
- "default_value": "application1"
- }
- ],
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license b/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/various/systems/system_with_empty_config/backend-config.json b/tests/test_resources/various/systems/system_with_empty_config/backend-config.json
deleted file mode 100644
index fe51488..0000000
--- a/tests/test_resources/various/systems/system_with_empty_config/backend-config.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
diff --git a/tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license b/tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/various/systems/system_with_valid_config/backend-config.json b/tests/test_resources/various/systems/system_with_valid_config/backend-config.json
deleted file mode 100644
index 83c3025..0000000
--- a/tests/test_resources/various/systems/system_with_valid_config/backend-config.json
+++ /dev/null
@@ -1,12 +0,0 @@
-[
- {
- "name": "Test system",
- "description": "This is a test system",
- "commands": {
- "run": []
- },
- "user_params": {
- "run": []
- }
- }
-]
diff --git a/tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license b/tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license
deleted file mode 100644
index 9b83bfc..0000000
--- a/tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license
+++ /dev/null
@@ -1,3 +0,0 @@
-SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
-
-SPDX-License-Identifier: Apache-2.0