Remove stale port of testu01

The build errors remained unattended since almost a year.

Fixes #171
This commit is contained in:
Norman Feske
2020-04-22 15:24:01 +02:00
parent 97f8a3b71a
commit dbdc441258
15 changed files with 0 additions and 522 deletions

View File

@@ -1,5 +0,0 @@
set test_name "testu01_alphabit"
source ${genode_dir}/repos/world/run/jitterentropy_testu01.inc
run_genode_until "child \"${test_name}\" exited with exit value 0" 600

View File

@@ -1,5 +0,0 @@
set test_name "testu01_rabbit"
source ${genode_dir}/repos/world/run/jitterentropy_testu01.inc
run_genode_until "child \"${test_name}\" exited with exit value 0" 1200

View File

@@ -1,71 +0,0 @@
#
# \brief Jitterentropy TestU01 tests
# \author Emery Hemingway
# \date 2015-12-11
#
#
# Configuration variables
#
# $test_name
#
set build_components {
core init timer
lib/vfs/jitterentropy
}
lappend build_components test/$test_name
build $build_components
create_boot_directory
set config {
<config>
<default caps="128"/>
<parent-provides>
<service name="CPU"/>
<service name="LOG"/>
<service name="PD"/>
<service name="RM"/>
<service name="ROM"/>
<service name="SIGNAL"/>
</parent-provides>
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>
<default caps="100"/>
<start name="timer">
<resource name="RAM" quantum="1M"/>
<provides> <service name="Timer"/> </provides>
</start>
<start name="}
append config $test_name
append config {">
<exit propagate="yes"/>
<resource name="RAM" quantum="1G"/>
<config file="/jitterentropy">
<libc stdout="/log" stderr="/log"/>
<vfs> <log/> <jitterentropy/> </vfs>
</config>
</start>
</config>
}
install_config $config
# generic modules
set boot_modules {
core init timer
ld.lib.so libc.lib.so vfs.lib.so libm.lib.so
vfs_jitterentropy.lib.so
}
lappend boot_modules $test_name
build_boot_image $boot_modules
append qemu_args " -nographic"
# vi: set ft=tcl :