aboutsummaryrefslogtreecommitdiff
path: root/tests/test_resources/backends/applications/application4/backend-config.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_resources/backends/applications/application4/backend-config.json')
-rw-r--r--tests/test_resources/backends/applications/application4/backend-config.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/test_resources/backends/applications/application4/backend-config.json b/tests/test_resources/backends/applications/application4/backend-config.json
new file mode 100644
index 0000000..d4362be
--- /dev/null
+++ b/tests/test_resources/backends/applications/application4/backend-config.json
@@ -0,0 +1,35 @@
+[
+ {
+ "name": "application_4",
+ "description": "This is application 4",
+ "variables": {
+ "build_dir": "build"
+ },
+ "supported_systems": [
+ {
+ "name": "System 4"
+ }
+ ],
+ "commands": {
+ "run": [
+ "cp {application.config_dir}/hello_app.txt {system.config_dir}",
+ "echo '{user_params:0}' > {system.config_dir}/params.txt",
+ "cat hello_app.txt"
+ ]
+ },
+ "user_params": {
+ "run": [
+ {
+ "name": "--app",
+ "description": "Sample command param",
+ "values": [
+ "application1",
+ "application2",
+ "application3"
+ ],
+ "default_value": "application1"
+ }
+ ]
+ }
+ }
+]