aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/application_config.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aiet/test_resources/application_config.json')
-rw-r--r--tests/aiet/test_resources/application_config.json96
1 files changed, 96 insertions, 0 deletions
diff --git a/tests/aiet/test_resources/application_config.json b/tests/aiet/test_resources/application_config.json
new file mode 100644
index 0000000..2dfcfec
--- /dev/null
+++ b/tests/aiet/test_resources/application_config.json
@@ -0,0 +1,96 @@
+[
+ {
+ "name": "application_1",
+ "description": "application number one",
+ "supported_systems": [
+ "system_1",
+ "system_2"
+ ],
+ "build_dir": "build_dir_11",
+ "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"
+ ],
+ "build_dir": "build_dir_21",
+ "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": []
+ }
+ }
+]