VirtualBox

source: vbox/trunk/src/VBox/Storage/testcase/tstVDCompact.vd@ 44901

Last change on this file since 44901 was 36637, checked in by vboxsync, 14 years ago

tstVDIo: Bugfix and extend compact testcase to VHD

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1# $Id: tstVDCompact.vd 36637 2011-04-09 12:17:40Z vboxsync $
2#
3# Storage: Testcase for compacting disks.
4#
5
6#
7# Copyright (C) 2011 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18# Init I/O RNG for generating random data for writes
19iorngcreate size=10M mode=manual seed=1234567890
20
21# Create zero pattern
22iopatterncreatefromnumber name=zero size=1M pattern=0
23
24print msg=Testing_VDI
25# Create disk containers, read verification is on.
26createdisk name=disk verify=yes
27# Create the disk.
28create disk=disk mode=base name=tstCompact.vdi type=dynamic backend=VDI size=200M
29# Fill the disk with random data
30io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=100
31# Read the data to verify it once.
32io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
33# Fill a part with 0's
34io disk=disk async=no mode=seq blocksize=64k off=100M-150M size=50M writes=100 pattern=zero
35# Now compact
36compact disk=disk image=0
37# Read again to verify that the content hasn't changed
38io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
39# Fill everything with 0
40io disk=disk async=no mode=seq blocksize=64k off=0M-200M size=200M writes=100 pattern=zero
41# Now compact
42compact disk=disk image=0
43# Read again to verify that the content hasn't changed
44io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
45# Cleanup
46close disk=disk mode=single delete=yes
47destroydisk name=disk
48
49print msg=Testing_VHD
50# Create disk containers, read verification is on.
51createdisk name=disk verify=yes
52# Create the disk.
53create disk=disk mode=base name=tstCompact.vhd type=dynamic backend=VHD size=200M
54# Fill the disk with random data
55io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=100
56# Read the data to verify it once.
57io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
58# Fill a part with 0's
59io disk=disk async=no mode=seq blocksize=64k off=100M-150M size=50M writes=100 pattern=zero
60# Now compact
61compact disk=disk image=0
62# Read again to verify that the content hasn't changed
63io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
64# Fill everything with 0
65io disk=disk async=no mode=seq blocksize=64k off=0M-200M size=200M writes=100 pattern=zero
66# Now compact
67compact disk=disk image=0
68# Read again to verify that the content hasn't changed
69io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
70# Cleanup
71close disk=disk mode=single delete=yes
72destroydisk name=disk
73
74# Destroy RNG and pattern
75iopatterndestroy name=zero
76iorngdestroy
77
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette