2015-10-05 09:13:01 +00:00
|
|
|
#
|
|
|
|
# \brief VFS stress test
|
|
|
|
# \author Emery Hemingway
|
|
|
|
# \date 2015-08-30
|
|
|
|
#
|
|
|
|
|
2023-11-24 11:26:29 +00:00
|
|
|
build {
|
|
|
|
core lib/ld init timer lib/vfs
|
2020-06-18 14:27:10 +00:00
|
|
|
test/vfs_stress
|
|
|
|
server/vfs_block
|
2022-09-01 11:12:13 +00:00
|
|
|
lib/vfs_rump
|
|
|
|
lib/vfs_import
|
2020-06-18 14:27:10 +00:00
|
|
|
}
|
|
|
|
|
2023-11-24 11:26:29 +00:00
|
|
|
#
|
|
|
|
# Check used commands
|
|
|
|
#
|
|
|
|
set mke2fs [installed_command mke2fs]
|
|
|
|
set dd [installed_command dd]
|
2015-10-05 09:13:01 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Build EXT2-file-system image
|
|
|
|
#
|
|
|
|
catch { exec $dd if=/dev/zero of=bin/ext2.raw bs=1M count=16 }
|
|
|
|
catch { exec $mke2fs -F bin/ext2.raw }
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<config>
|
|
|
|
<affinity-space width="3" height="2" />
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2015-10-05 09:13:01 +00:00
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>
|
2020-06-18 14:27:10 +00:00
|
|
|
<start name="vfs_block">
|
|
|
|
<resource name="RAM" quantum="20M"/>
|
2015-10-05 09:13:01 +00:00
|
|
|
<provides><service name="Block"/></provides>
|
2020-06-18 14:27:10 +00:00
|
|
|
<config>
|
|
|
|
<vfs>
|
|
|
|
<ram/>
|
|
|
|
<import>
|
|
|
|
<rom name="ext2.raw"/>
|
|
|
|
</import>
|
|
|
|
</vfs>
|
|
|
|
<default-policy root="/" file="ext2.raw" block_size="512"
|
|
|
|
writeable="yes"/>
|
|
|
|
</config>
|
2015-10-05 09:13:01 +00:00
|
|
|
</start>
|
2017-05-07 20:36:11 +00:00
|
|
|
<start name="vfs_stress" caps="200">
|
2015-10-05 09:13:01 +00:00
|
|
|
<resource name="RAM" quantum="32M"/>
|
|
|
|
<config depth="8">
|
2018-04-20 08:54:45 +00:00
|
|
|
<vfs> <rump fs="ext2fs" ram="30M" writeable="yes"/> </vfs>
|
2015-10-05 09:13:01 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
2023-11-24 11:26:29 +00:00
|
|
|
build_boot_image [list {*}[build_artifacts] ext2.raw]
|
2015-10-05 09:13:01 +00:00
|
|
|
|
|
|
|
append qemu_args "-nographic -smp cpus=6"
|
|
|
|
|
|
|
|
run_genode_until {child "vfs_stress" exited with exit value 0} 180
|
|
|
|
|
|
|
|
exec rm -f bin/ext2.raw
|