File: swaplabel

package info (click to toggle)
util-linux 2.25.2-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 60,764 kB
  • ctags: 11,189
  • sloc: ansic: 103,273; sh: 18,345; makefile: 322; python: 316; xml: 232; csh: 37; sed: 16
file content (60 lines) | stat: -rwxr-xr-x 1,655 bytes parent folder | download
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
52
53
54
55
56
57
58
59
60
#!/bin/bash

# This file is part of util-linux.
#
# This file 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; either version 2 of the License, or
# (at your option) any later version.
#
# This file 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.

TS_TOPDIR="${0%/*}/../.."
TS_DESC="swaplabel"

. $TS_TOPDIR/functions.sh
ts_init "$*"

ts_check_test_command "$TS_CMD_MKSWAP"
ts_check_test_command "$TS_CMD_SWAPLABEL"

# fallocate does not work on most file systems
function fallocate_or_skip()
{
	$TS_CMD_FALLOCATE -l $1 $2 2>/dev/null || \
	truncate -s $1 $2 || \
	ts_skip "no way to create test image"
}

IMAGE=${TS_OUTDIR}/${TS_TESTNAME}.file

PAGE_SIZE=$($TS_HELPER_SYSINFO pagesize)
PAGE_SIZE_KB=$(( $PAGE_SIZE / 1024 ))
MIN_SWAP_SIZE=$(( 10 * $PAGE_SIZE ))
MIN_SWAP_SIZE_KB=$(( MIN_SWAP_SIZE / 1024 ))

rm -f $IMAGE
fallocate_or_skip $(( $MIN_SWAP_SIZE - 1 )) $IMAGE
$TS_CMD_MKSWAP \
	--label 1234567890abcdef \
	--uuid 12345678-abcd-abcd-abcd-1234567890ab \
	$IMAGE 2>&1 |\
	sed "s/ $MIN_SWAP_SIZE_KB KiB/ 10 pages/" \
	>> $TS_OUTPUT 2>&1

rm -f $IMAGE
fallocate_or_skip $MIN_SWAP_SIZE $IMAGE
$TS_CMD_MKSWAP \
	--label 1234567890abcdef \
	--uuid 12345678-abcd-abcd-abcd-1234567890ab \
	$IMAGE 2>&1 |\
	sed "s/ $(( $MIN_SWAP_SIZE_KB - $PAGE_SIZE_KB )) KiB/ 9 pages/" \
	>> $TS_OUTPUT 2>&1
$TS_CMD_SWAPLABEL $IMAGE >> $TS_OUTPUT 2>&1

#rm -f $IMAGE

ts_finalize