blob: ff3a374f13709d2c5858e16abbb579b5475ad6e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/bash
#
# Copyright (C) 2011-2013 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
## Handle target disk image being too small for its contents.
set -eu
. "$SRCDIR/tests.as-root/lib"
# Shrink linux-system to the minimum btrfs will allow.
cd "$DATADIR/morphs"
sed -e 's/system-kind: syslinux-disk/system-kind: disk/' \
-e 's/disk-size: 1G/disk-size: 512M/' \
-i linux-system.morph
git add linux-system.morph
git commit -q -m "Make linux-system as small as possible"
# Grow hello-chunk to be absurdly large.
cd "$DATADIR/chunk-repo"
git checkout -q farrokh
cat <<'EOF' > hello.morph
{
"name": "hello",
"kind": "chunk",
"build-system": "dummy",
"install-commands": [
"dd if=/dev/zero of=\"$DESTDIR\"/huge-file seek=1048580 count=0"
]
}
EOF
git add hello.morph
git commit -q -m "Make hello be very big"
# Ignore stdout - Morph logs a timestamped error
"$SRCDIR/scripts/test-morph" build-morphology test:morphs master linux-system \
> /dev/null
|