summaryrefslogtreecommitdiff
path: root/tests/setup_once
diff options
context:
space:
mode:
Diffstat (limited to 'tests/setup_once')
-rwxr-xr-xtests/setup_once13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/setup_once b/tests/setup_once
index 41ef09f3..e969c1a3 100755
--- a/tests/setup_once
+++ b/tests/setup_once
@@ -56,6 +56,7 @@ cat <<EOF > hello.morph
"gcc -o hello hello.c"
],
"install-commands": [
+ "install -d \\"\$DESTDIR\\"/etc",
"install -d \\"\$DESTDIR\\"/bin",
"install hello \\"\$DESTDIR\\"/bin/hello"
]
@@ -78,6 +79,18 @@ cat <<EOF > hello-stratum.morph
EOF
git add hello-stratum.morph
+cat <<EOF > hello-system.morph
+{
+ "name": "hello-system",
+ "kind": "system",
+ "disk-size": "1G",
+ "strata": [
+ "hello-stratum"
+ ]
+}
+EOF
+git add hello-system.morph
+
git commit --quiet -m "add a hello world program and morphs"
git checkout --quiet master