From 3dbcce51eaa3de66c945628676d9303aca5a98fd Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 12 Jul 2013 22:28:00 +0200 Subject: [settings] Add "busdevfn" setting type Allow network device's "busloc" setting to be formatted as a PCI bus:dev.fn address using e.g. ${net0/busloc:busdevfn}. Signed-off-by: Michael Brown --- src/tests/settings_test.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/tests') diff --git a/src/tests/settings_test.c b/src/tests/settings_test.c index d6d125748..42957c7d7 100644 --- a/src/tests/settings_test.c +++ b/src/tests/settings_test.c @@ -182,6 +182,12 @@ static struct setting test_uuid_setting = { .type = &setting_type_uuid, }; +/** Test PCI bus:dev.fn setting type */ +static struct setting test_busdevfn_setting = { + .name = "test_busdevfn", + .type = &setting_type_busdevfn, +}; + /** * Perform settings self-tests * @@ -282,6 +288,10 @@ static void settings_test_exec ( void ) { 0x7a, 0x7c, 0xfe, 0x4f, 0xca, 0x4a, 0x57 ), "1a6a749d-0eda-461a-a87a-7cfe4fca4a57" ); + /* "busdevfn" setting type (no store capability) */ + fetchf_ok ( &test_settings, &test_busdevfn_setting, + RAW ( 0x03, 0x45 ), "03:08.5" ); + /* Clear and unregister test settings block */ clear_settings ( &test_settings ); unregister_settings ( &test_settings ); -- cgit v1.2.3-55-g7522