~ubuntu-branches/ubuntu/vivid/parted/vivid

« back to all changes in this revision

Viewing changes to tests/t4100-dvh-partition-limits.sh

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-30 13:16:15 UTC
  • mfrom: (7.2.34 sid)
  • Revision ID: package-import@ubuntu.com-20140730131615-6uy87mosal6722s6
Tags: 3.2-1
* New upstream release.
* Drop currently-unused build-dependency on po4a (thanks, Johannes
  Schauer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
# enforce limits on partition start sector and length
3
3
 
4
 
# Copyright (C) 2008-2012 Free Software Foundation, Inc.
 
4
# Copyright (C) 2008-2014 Free Software Foundation, Inc.
5
5
 
6
6
# This program is free software; you can redistribute it and/or modify
7
7
# it under the terms of the GNU General Public License as published by
37
37
n=4096
38
38
 
39
39
# create an XFS file system
40
 
dd if=/dev/zero of=$fs bs=1MB count=2 seek=20 || fail=1
41
 
mkfs.xfs -f -q $fs || fail=1
 
40
mkfs.xfs -dfile,name=$fs,size=100m || fail=1
42
41
mkdir "$mp" || fail=1
43
42
 
44
43
# Unmount upon interrupt, failure, etc., as well as upon normal completion.