Fix String(Hex()) usage

- additional add test casye to log.run

Fixes #2265
This commit is contained in:
Alexander Boettcher
2017-01-30 21:35:01 +01:00
committed by Norman Feske
parent 818795ab90
commit dd5592cc50
3 changed files with 5 additions and 1 deletions

View File

@ -30,5 +30,8 @@ void Component::construct(Genode::Env &env)
typedef String<128> Label;
log("multiarg string: ", Label(Char('"'), "parent -> child.", 7, Char('"')));
String<32> hex(Hex(3));
log("String(Hex(3)): ", hex);
log("Test done.");
}