mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
vbox: be less verbose in vmx_invalid exit cases
Be less verbose regards warnings caused by vmx_invalid exits - which triggers on T400 more often because it has no Unrestricted Guest support. This leads to lot of log messages so that the test does not succeed in time. Additionally, the virtualbox_auto_disk.run script is adjusted to check for some output to exit earlier if something went wrong. Fixes #1367
This commit is contained in:
parent
988a7962a8
commit
25eec75ad8
@ -53,8 +53,9 @@ exec cp ${genode_dir}/repos/ports/run/vm_auto_disk.vbox bin/.
|
||||
|
||||
build_boot_image $boot_modules
|
||||
|
||||
run_genode_until "fb resize : 1024x768@16 -> 640x480@32" 40
|
||||
run_genode_until {\[init -\> vbox\].*Guest Additions capability report:.*seamless: yes, hostWindowMapping: no, graphics: yes} 240 $spawn_id
|
||||
run_genode_until "fb resize : 720x400@16 -> 640x480@32" 40
|
||||
run_genode_until {\[init -\> vbox\].*Guest Additions capability report:.*seamless: no, hostWindowMapping: no, graphics: no} 30 $spawn_id
|
||||
run_genode_until {\[init -\> vbox\].*Guest Additions capability report:.*seamless: yes, hostWindowMapping: no, graphics: yes} 170 $spawn_id
|
||||
|
||||
# cleanup bin directory - remove vbox file
|
||||
exec rm bin/vm_auto_disk.vbox
|
||||
|
@ -102,7 +102,7 @@ class Vcpu_handler_vmx : public Vcpu_handler
|
||||
Genode::Thread_base *myself = Genode::Thread_base::myself();
|
||||
Nova::Utcb *utcb = reinterpret_cast<Nova::Utcb *>(myself->utcb());
|
||||
|
||||
unsigned const dubious = utcb->inj_info | utcb->inj_error |
|
||||
unsigned const dubious = utcb->inj_info |
|
||||
utcb->intr_state | utcb->actv_state;
|
||||
if (dubious)
|
||||
Vmm::printf("%s - dubious - inj_info=0x%x inj_error=%x"
|
||||
|
Loading…
Reference in New Issue
Block a user