diff options
author | Günther Deschner <gd@samba.org> | 2010-06-22 15:25:01 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-06-22 15:57:12 +0200 |
commit | 13ede2bf7a75b2b52132954684f23ad5a89a83a1 (patch) | |
tree | 7bd126f1d7bb55f7135288b26ea8a9e492547d24 | |
parent | e439b6cb8ceb01d930bd8ec2d7b9c79ebca5647e (diff) | |
download | samba-13ede2bf7a75b2b52132954684f23ad5a89a83a1.tar.gz samba-13ede2bf7a75b2b52132954684f23ad5a89a83a1.tar.bz2 samba-13ede2bf7a75b2b52132954684f23ad5a89a83a1.zip |
s4-smbtorture: also test keynames with '/' in it in SetPrinterDataEx keyname tests.
Guenther
-rw-r--r-- | source4/torture/rpc/spoolss.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index 0e9e466e75..786719bc2a 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -4815,7 +4815,14 @@ static bool test_SetPrinterDataEx_keys(struct torture_context *tctx, "torture,data", "torture,data,ex", "torture,data\\ex", - "torture\\data,ex" + "torture\\data,ex", + "torture/data", + "torture/data ex", + "torture/data ex/sub", + "torture//data", + "torture//data ex", + "torture//data ex/sub", + "torture//data ex//sub", }; int i; |