From 4dd725b1b599968fb787c93f6eb3a42af007b21c Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Thu, 24 Oct 2019 10:41:28 +1300 Subject: [PATCH] pytests: rpc echo should not segfault Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- python/samba/tests/segfault.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/samba/tests/segfault.py b/python/samba/tests/segfault.py index 66c0b1004c9..65937883156 100644 --- a/python/samba/tests/segfault.py +++ b/python/samba/tests/segfault.py @@ -152,3 +152,8 @@ class SegfaultTests(samba.tests.TestCase): @segfault_detector def test_messaging_deregister(self): messaging.deregister('s', 's', 's', False) + + @segfault_detector + def test_rpcecho(self): + from dcerpc import echo + echo.rpcecho("") -- 2.47.3