From e5576bf2a145117c583c3ad05fec3a08aa90993d Mon Sep 17 00:00:00 2001 From: Marri Devender Rao Date: Mon, 16 Apr 2018 05:56:11 -0500 Subject: Add unit test for watches created on object paths Verify the watches created for the object path being watched for 'interfaces added' signal. Resolves openbmc/openbmc#3003 Change-Id: I88a3adbbe91fcbe5bdf606d2f460d4d0c6d9c1a2 Signed-off-by: Marri Devender Rao --- src/test/templates/interfaceaddtest.mako.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/test/templates/interfaceaddtest.mako.hpp (limited to 'src/test/templates/interfaceaddtest.mako.hpp') diff --git a/src/test/templates/interfaceaddtest.mako.hpp b/src/test/templates/interfaceaddtest.mako.hpp new file mode 100644 index 0000000..3b0609a --- /dev/null +++ b/src/test/templates/interfaceaddtest.mako.hpp @@ -0,0 +1,11 @@ +const std::array paths = { +% for p in paths: + "${p.name}"s, +% endfor +}; + +const std::array pathwatches = {{ +% for w in pathwatches: + paths[${w.pathinstances}], +% endfor +}}; -- cgit v1.2.1