Log name of exiting child from Child::exit()

Fixes #1243.
This commit is contained in:
Christian Helmuth
2014-08-22 14:43:54 +02:00
committed by Norman Feske
parent 53a7b4ca66
commit 0b5f901e58
32 changed files with 51 additions and 52 deletions

View File

@@ -72,7 +72,7 @@ build_boot_image {
# Execute test case
#
run_genode_until {.*child exited with exit value 0.*} 60
run_genode_until {child "test-libc_vfs" exited with exit value 0.*\n} 20
puts "\nTest succeeded\n"

View File

@@ -51,7 +51,7 @@ build_boot_image $boot_modules
# Execute test case
#
run_genode_until "child exited with exit value 0.*\n" 10
run_genode_until {child "test-lx_hybrid_ctors" exited with exit value 0.*\n} 10
#
# Compare output

View File

@@ -50,10 +50,7 @@ build_boot_image $boot_modules
# Execute test case
#
# qemu config
append qemu_args "-nographic -m 64 "
run_genode_until "child exited with exit value 0.*\n" 10
run_genode_until {child "test-lx_hybrid_exception" exited with exit value 0.*\n} 10
puts "Test succeeded"

View File

@@ -67,7 +67,11 @@ build_boot_image $boot_modules
# Execute test
#
run_genode_until "child exited with exit value 0.*\n" 10
if {$test_type eq "static"} {
run_genode_until {child "test-lx_rmap_static" exited with exit value 0.*\n} 10
} else {
run_genode_until {child "test-lx_rmap_dynamic" exited with exit value 0.*\n} 10
}
puts "Test succeeded"
# vi: set ft=tcl :