diff options
author | Günther Deschner <gd@samba.org> | 2010-03-05 11:06:18 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-05 11:09:05 +0100 |
commit | b3765afd3878856f8a4580de2da5032a81929ea2 (patch) | |
tree | ca31c6fed097e78906c83cba3a2483f323867f25 | |
parent | 12ae05939ff681b3d11b8eea85adf47a49766bd1 (diff) | |
download | samba-b3765afd3878856f8a4580de2da5032a81929ea2.tar.gz samba-b3765afd3878856f8a4580de2da5032a81929ea2.tar.bz2 samba-b3765afd3878856f8a4580de2da5032a81929ea2.zip |
s4-smbtorture: skip NotifyChangeKeyValue test against s3 for now.
Guenther
-rw-r--r-- | source4/torture/rpc/winreg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 93be45d25f..5f1a66b985 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -87,6 +87,10 @@ static bool test_NotifyChangeKeyValue(struct dcerpc_pipe *p, init_winreg_String(&r.in.string1, NULL); init_winreg_String(&r.in.string2, NULL); + if (torture_setting_bool(tctx, "samba3", false)) { + torture_skip(tctx, "skipping NotifyChangeKeyValue test against Samba 3"); + } + torture_assert_ntstatus_ok(tctx, dcerpc_winreg_NotifyChangeKeyValue(p, tctx, &r), "NotifyChangeKeyValue failed"); |