Skip to content

Commit

Permalink
fixup "run: use ram attribute in start nodes" (test/libc_fifo_pipe)
Browse files Browse the repository at this point in the history
Issue #5448
  • Loading branch information
nfeske committed Feb 12, 2025
1 parent a602f31 commit 582d661
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion repos/libports/src/test/libc_fifo_pipe/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,10 @@ class Test_fifo_pipe::Test
});
} else {
auto const name { node.attribute_value("name", Genode::String<128> { }) };
xml.node("start", [&xml, &node, &name, iteration] ( ) {
auto const ram { node.attribute_value("ram", Genode::String<128> { }) };
xml.node("start", [&xml, &node, &name, &ram, iteration] ( ) {
xml.attribute("name", name);
xml.attribute("ram", ram);
xml.attribute("version", iteration);

node.with_raw_content([&xml] (char const *addr, size_t const size) {
Expand Down

0 comments on commit 582d661

Please sign in to comment.