summaryrefslogtreecommitdiff
path: root/source3/torture
diff options
context:
space:
mode:
Diffstat (limited to 'source3/torture')
-rw-r--r--source3/torture/mangle_test.c5
-rw-r--r--source3/torture/nbio.c10
-rw-r--r--source3/torture/nsstest.c4
-rw-r--r--source3/torture/torture.c29
4 files changed, 4 insertions, 44 deletions
diff --git a/source3/torture/mangle_test.c b/source3/torture/mangle_test.c
index ced0185c95..2d5b3610d5 100644
--- a/source3/torture/mangle_test.c
+++ b/source3/torture/mangle_test.c
@@ -88,9 +88,8 @@ static BOOL test_one(struct cli_state *cli, const char *name)
if (strcasecmp(name, data.dptr) != 0) {
/* we have a collision */
collisions++;
- printf("Collision between %s and %s -> %s "
- " (coll/tot: %u/%u)\n",
- name, data.dptr, shortname, collisions, total);
+ printf("Collision between %s and %s -> %s\n",
+ name, data.dptr, shortname);
}
free(data.dptr);
} else {
diff --git a/source3/torture/nbio.c b/source3/torture/nbio.c
index 2d519b40ba..0d6955c879 100644
--- a/source3/torture/nbio.c
+++ b/source3/torture/nbio.c
@@ -79,16 +79,6 @@ void nbio_shmem(int n)
}
}
-static int ne_find_handle(int handle)
-{
- int i;
- children[nbio_id].line = line_count;
- for (i=0;i<MAX_FILES;i++) {
- if (ftable[i].handle == handle) return i;
- }
- return -1;
-}
-
static int find_handle(int handle)
{
int i;
diff --git a/source3/torture/nsstest.c b/source3/torture/nsstest.c
index c9b068aa04..3aeaa177a1 100644
--- a/source3/torture/nsstest.c
+++ b/source3/torture/nsstest.c
@@ -35,13 +35,13 @@ static void *find_fn(const char *name)
snprintf(s,sizeof(s), "_nss_%s_%s", nss_name, name);
if (!h) {
- h = sys_dlopen(so_path, RTLD_LAZY);
+ h = dlopen(so_path, RTLD_LAZY);
}
if (!h) {
printf("Can't open shared library %s\n", so_path);
exit(1);
}
- res = sys_dlsym(h, s);
+ res = dlsym(h, s);
if (!res) {
printf("Can't find function %s\n", s);
return NULL;
diff --git a/source3/torture/torture.c b/source3/torture/torture.c
index 101f4071cb..23624d0733 100644
--- a/source3/torture/torture.c
+++ b/source3/torture/torture.c
@@ -2997,34 +2997,6 @@ static BOOL run_rename(int dummy)
return correct;
}
-static BOOL run_pipe_number(int dummy)
-{
- static struct cli_state cli1;
- char *pipe_name = "\\SPOOLSS";
- int fnum;
- int num_pipes = 0;
-
- printf("starting pipenumber test\n");
- if (!torture_open_connection(&cli1)) {
- return False;
- }
-
- cli_sockopt(&cli1, sockops);
- while(1) {
- fnum = cli_nt_create_full(&cli1, pipe_name,FILE_READ_DATA, FILE_ATTRIBUTE_NORMAL,
- FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN_IF, 0);
-
- if (fnum == -1) {
- printf("Open of pipe %s failed with error (%s)\n", pipe_name, cli_errstr(&cli1));
- break;
- }
- num_pipes++;
- }
-
- printf("pipe_number test - we can open %d %s pipes.\n", num_pipes, pipe_name );
- torture_close_connection(&cli1);
- return True;
-}
/*
Test open mode returns on read-only files.
@@ -3729,7 +3701,6 @@ static struct {
{"UTABLE", torture_utable, 0},
{"CASETABLE", torture_casetable, 0},
{"ERRMAPEXTRACT", run_error_map_extract, 0},
- {"PIPE_NUMBER", run_pipe_number, 0},
{NULL, NULL, 0}};