From 0fff7ba143022d36064433e4494d83f9ba7d9944 Mon Sep 17 00:00:00 2001 From: James Peach Date: Fri, 2 Mar 2007 05:58:22 +0000 Subject: r21648: Start a UNIX extensions test set. Add a test for the SMBWhoami query. (This used to be commit ca89683dc28104a8cee23b0c1428350f22a68c99) --- source4/torture/unix/unix.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 source4/torture/unix/unix.c (limited to 'source4/torture/unix/unix.c') diff --git a/source4/torture/unix/unix.c b/source4/torture/unix/unix.c new file mode 100644 index 0000000000..57d804ab6f --- /dev/null +++ b/source4/torture/unix/unix.c @@ -0,0 +1,39 @@ +/* + UNIX Extensions test registration. + + Copyright (C) 2006 James Peach + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +*/ + +#include "includes.h" +#include "torture/torture.h" +#include "torture/unix/proto.h" + +NTSTATUS torture_unix_init(void) +{ + struct torture_suite *suite = + torture_suite_create(talloc_autofree_context(), "UNIX"); + + suite->description = + talloc_strdup(suite, "CIFS UNIX extensions tests"); + + torture_suite_add_simple_test(suite, + "WHOAMI", apple_torture_unix_whoami); + + return (torture_register_suite(suite)) ? NT_STATUS_OK + : NT_STATUS_UNSUCCESSFUL; + +} -- cgit From 737454d6a07ad08cc244e9d98cafc95a7565e87b Mon Sep 17 00:00:00 2001 From: James Peach Date: Fri, 2 Mar 2007 17:47:58 +0000 Subject: r21659: Rename functions. (This used to be commit 6e645577a60bc79431a962b6522e8592b7c50e98) --- source4/torture/unix/unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/unix/unix.c') diff --git a/source4/torture/unix/unix.c b/source4/torture/unix/unix.c index 57d804ab6f..0182ffc14d 100644 --- a/source4/torture/unix/unix.c +++ b/source4/torture/unix/unix.c @@ -31,7 +31,7 @@ NTSTATUS torture_unix_init(void) talloc_strdup(suite, "CIFS UNIX extensions tests"); torture_suite_add_simple_test(suite, - "WHOAMI", apple_torture_unix_whoami); + "WHOAMI", torture_unix_whoami); return (torture_register_suite(suite)) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL; -- cgit From 754d416ea54e1e520aa035a759ec8e3975ab5354 Mon Sep 17 00:00:00 2001 From: James Peach Date: Mon, 5 Mar 2007 22:26:38 +0000 Subject: r21710: Add client support for the UNIX_INFO2 info level in the QueryFile, QueryPath and FindFirst calls. Add a new torture test to verify the server side. (This used to be commit 7f56da2d1fa0718e5282bb4aea7d9a63a62f0bc7) --- source4/torture/unix/unix.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/torture/unix/unix.c') diff --git a/source4/torture/unix/unix.c b/source4/torture/unix/unix.c index 0182ffc14d..b1c1a056b6 100644 --- a/source4/torture/unix/unix.c +++ b/source4/torture/unix/unix.c @@ -1,7 +1,7 @@ /* UNIX Extensions test registration. - Copyright (C) 2006 James Peach + Copyright (C) 2007 James Peach This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,6 +32,8 @@ NTSTATUS torture_unix_init(void) torture_suite_add_simple_test(suite, "WHOAMI", torture_unix_whoami); + torture_suite_add_simple_test(suite, + "INFO2", unix_torture_unix_info2); return (torture_register_suite(suite)) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL; -- cgit From 0479a2f1cbae51fcd8dbdc3c148c808421fb4d25 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 10 Jul 2007 02:07:03 +0000 Subject: r23792: convert Samba4 to GPLv3 There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa) --- source4/torture/unix/unix.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source4/torture/unix/unix.c') diff --git a/source4/torture/unix/unix.c b/source4/torture/unix/unix.c index b1c1a056b6..05ea27db02 100644 --- a/source4/torture/unix/unix.c +++ b/source4/torture/unix/unix.c @@ -5,7 +5,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -14,8 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with this program. If not, see . */ #include "includes.h" -- cgit From 1e973565b6c0cb738b25a2d9439d5acb441701f4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 27 Apr 2008 14:02:46 +0100 Subject: Move subunit infrastructure code into lib/torture. (This used to be commit 5b44d8121de7735d69e6238a1442aff034a8ebd3) --- source4/torture/unix/unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/unix/unix.c') diff --git a/source4/torture/unix/unix.c b/source4/torture/unix/unix.c index 05ea27db02..661e337270 100644 --- a/source4/torture/unix/unix.c +++ b/source4/torture/unix/unix.c @@ -18,7 +18,7 @@ */ #include "includes.h" -#include "torture/torture.h" +#include "torture/smbtorture.h" #include "torture/unix/proto.h" NTSTATUS torture_unix_init(void) -- cgit