From: Douglas Bagnall Date: Sat, 7 Dec 2019 10:17:26 +0000 (+1300) Subject: selftest/target/samba: add missing methods X-Git-Tag: ldb-2.1.1~197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d087f74d45d024055766068e4e57fa9b92662a08;p=thirdparty%2Fsamba.git selftest/target/samba: add missing methods These methods are being called but have not been provided. Signed-off-by: Douglas Bagnall Reviewed-by: Gary Lockyer Reviewed-by: Andrew Bartlett --- diff --git a/selftest/target/Samba.pm b/selftest/target/Samba.pm index 213aaa8d8d3..535a2e19dd6 100644 --- a/selftest/target/Samba.pm +++ b/selftest/target/Samba.pm @@ -926,4 +926,20 @@ sub ns_exec_preargs } } + +sub check_env { + my ($self, $envvars) = @_; + return 1; +} + +sub teardown_env { + my ($self, $env) = @_; + return 1; +} + + +sub getlog_env { + return ''; +} + 1;