blob: 644799d87aff52d365938ecf6bc706b4944c0a10 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="examples">
<Component>
<File Source="..\..\examples\1mbs_clients.fio" />
</Component>
<Component>
<File Source="..\..\examples\aio-read.fio" />
</Component>
<Component>
<File Source="..\..\examples\disk-zone-profile.fio" />
</Component>
<Component>
<File Source="..\..\examples\fsx.fio" />
</Component>
<Component>
<File Source="..\..\examples\iometer-file-access-server.fio" />
</Component>
<Component>
<File Source="..\..\examples\netio.fio" />
</Component>
<Component>
<File Source="..\..\examples\ssd-test.fio" />
</Component>
<Component>
<File Source="..\..\examples\surface-scan.fio" />
</Component>
<Component>
<File Source="..\..\examples\tiobench-example.fio" />
</Component>
<Component>
<File Source="..\..\examples\null.fio" />
</Component>
<Component>
<File Source="..\..\examples\flow.fio" />
</Component>
<Component>
<File Source="..\..\examples\cpuio.fio" />
</Component>
<Component>
<File Source="..\..\examples\falloc.fio" />
</Component>
<Component>
<File Source="..\..\examples\fusion-aw-sync.fio" />
</Component>
<Component>
<File Source="..\..\examples\ssd-steadystate.fio" />
</Component>
<Component>
<File Source="..\..\examples\zipf.fio" />
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="examples">
<ComponentRef Id="_1mbs_clients.fio" />
<ComponentRef Id="aio_read.fio" />
<ComponentRef Id="disk_zone_profile.fio" />
<ComponentRef Id="fsx.fio" />
<ComponentRef Id="iometer_file_access_server.fio" />
<ComponentRef Id="netio.fio" />
<ComponentRef Id="ssd_test.fio" />
<ComponentRef Id="surface_scan.fio" />
<ComponentRef Id="tiobench_example.fio" />
<ComponentRef Id="null.fio" />
<ComponentRef Id="flow.fio" />
<ComponentRef Id="cpuio.fio" />
<ComponentRef Id="falloc.fio" />
<ComponentRef Id="fusion_aw_sync.fio" />
<ComponentRef Id="ssd_steadystate.fio" />
<ComponentRef Id="zipf.fio" />
</ComponentGroup>
</Fragment>
</Wix>
|