From 34480c9269ad86bf49427382879306acdf61f3a8 Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Wed, 28 Nov 2018 15:42:37 +0100 Subject: [PATCH] test-rm_fault: use ld.lib.so to test read-only mem Due to the changing environment this test is executed (like depot_autopilot) the binary test-rm_fault used to check ROM dataspace's read-only property does not suit anymore. This commit changes the binary to ld.lib.so that is normally still provided as a ROM dataspace. Ref #3027 --- repos/base/src/test/rm_fault/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/src/test/rm_fault/main.cc b/repos/base/src/test/rm_fault/main.cc index 1f97d6b9c..77a01f291 100644 --- a/repos/base/src/test/rm_fault/main.cc +++ b/repos/base/src/test/rm_fault/main.cc @@ -245,7 +245,7 @@ struct Main_parent Heap _heap { _env.ram(), _env.rm() }; Attached_rom_dataspace _config { _env, "config" }; - Rom_connection _binary { _env, "test-rm_fault" }; + Rom_connection _binary { _env, "ld.lib.so" }; /* parent services */ struct Parent_services : Test_child_policy::Parent_services