aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/applications/application4
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aiet/test_resources/applications/application4')
-rw-r--r--tests/aiet/test_resources/applications/application4/aiet-config.json35
-rw-r--r--tests/aiet/test_resources/applications/application4/aiet-config.json.license3
-rw-r--r--tests/aiet/test_resources/applications/application4/hello_app.txt4
3 files changed, 42 insertions, 0 deletions
diff --git a/tests/aiet/test_resources/applications/application4/aiet-config.json b/tests/aiet/test_resources/applications/application4/aiet-config.json
new file mode 100644
index 0000000..34dc780
--- /dev/null
+++ b/tests/aiet/test_resources/applications/application4/aiet-config.json
@@ -0,0 +1,35 @@
+[
+ {
+ "name": "application_4",
+ "description": "This is application 4",
+ "build_dir": "build",
+ "supported_systems": [
+ {
+ "name": "System 4"
+ }
+ ],
+ "commands": {
+ "build": [
+ "cp ../hello_app.txt . # {user_params:0}"
+ ],
+ "run": [
+ "{application.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/aiet/test_resources/applications/application4/aiet-config.json.license b/tests/aiet/test_resources/applications/application4/aiet-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/aiet/test_resources/applications/application4/aiet-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/aiet/test_resources/applications/application4/hello_app.txt b/tests/aiet/test_resources/applications/application4/hello_app.txt
new file mode 100644
index 0000000..2ec0d1d
--- /dev/null
+++ b/tests/aiet/test_resources/applications/application4/hello_app.txt
@@ -0,0 +1,4 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+SPDX-License-Identifier: Apache-2.0
+
+Hello from APP!