From 9712912dfcdb7894ab1111bf67572ba0f6d3d5de Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 2 May 2012 09:49:19 +1000 Subject: testsuite/libsmbclient: Remove unused and expensive-to-link testsuite This testsuite never got off the ground, and unlike the other libsmbclient tests, it is not integrated into make test, has no driver script we could integrate. As it has been in this state for 10 years, and adding it to the compile did not find any link-time issues (particularly in comparison to the link-time cost for so many individual binaries), I am now removing them. The libsmbclient examples are seperate to this, and remain in examples/libsmbclient. Andrew Bartlett --- testsuite/libsmbclient/src/getdents/getdents_5.c | 106 ----------------------- 1 file changed, 106 deletions(-) delete mode 100644 testsuite/libsmbclient/src/getdents/getdents_5.c (limited to 'testsuite/libsmbclient/src/getdents/getdents_5.c') diff --git a/testsuite/libsmbclient/src/getdents/getdents_5.c b/testsuite/libsmbclient/src/getdents/getdents_5.c deleted file mode 100644 index 352a1440e47..00000000000 --- a/testsuite/libsmbclient/src/getdents/getdents_5.c +++ /dev/null @@ -1,106 +0,0 @@ -#include -#include -#include -#include -#include - -#define MAX_BUFF_SIZE 255 -char g_workgroup[MAX_BUFF_SIZE]; -char g_username[MAX_BUFF_SIZE]; -char g_password[MAX_BUFF_SIZE]; -char g_server[MAX_BUFF_SIZE]; -char g_share[MAX_BUFF_SIZE]; - - -static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, - char *username, int unmaxlen, char *password, int pwmaxlen) -{ - - strncpy(workgroup, g_workgroup, wgmaxlen - 1); - - strncpy(username, g_username, unmaxlen - 1); - - strncpy(password, g_password, pwmaxlen - 1); - - strcpy(g_server, server); - strcpy(g_share, share); - -} - -int main(int argc, char** argv) -{ - int err = -1; - int fd = 0; - int dh = 0; - int entry_num = 0; - int i = 0; - char *file_name; - char *tmp_file_ptr; - int diramount = 0; - - struct smbc_dirent *dirptr; - - char buff[MAX_BUFF_SIZE]; - char url[MAX_BUFF_SIZE]; - char file_url[MAX_BUFF_SIZE]; - char dir_url[MAX_BUFF_SIZE]; - char dirbuff[MAX_BUFF_SIZE]; - - memset(g_workgroup, '\0', MAX_BUFF_SIZE); - memset(url, '\0', MAX_BUFF_SIZE); - memset(file_url, '\0', MAX_BUFF_SIZE); - memset(dir_url, '\0', MAX_BUFF_SIZE); - memset(buff, '\0', MAX_BUFF_SIZE); - - if ( argc == 6 ) - { - - dirptr = (struct smbc_dirent *) dirbuff; - - strncpy(g_workgroup,argv[1],strlen(argv[1])); - strncpy(g_username,argv[2],strlen(argv[2])); - strncpy(g_password,argv[3],strlen(argv[3])); - strncpy(url,argv[4],strlen(argv[4])); - smbc_init(auth_fn, 0); - - strncpy(file_url,"tempfile-",9); - tmp_file_ptr = file_url; - tmp_file_ptr += 9; - - smbc_rmdir(url); - smbc_mkdir(url,0666); - - entry_num = atoi(argv[5]); - strcat(dir_url,url); - strcat(dir_url,"/"); - - file_name = dir_url; - file_name += strlen(dir_url); - - for ( i = 0; i < entry_num; i++ ) - { - sprintf(buff,"%d",i); - memcpy(tmp_file_ptr,buff,strlen(buff)+4); - strncat(tmp_file_ptr,".txt",4); - strcpy(file_name,file_url); - fd = smbc_open(dir_url,O_RDWR | O_CREAT, 0666); - smbc_close(fd); - - } - - dh = smbc_opendir(url); - diramount = smbc_getdents( dh, dirptr, 20 /* sizeof(dirbuff)*/); - - if ( diramount < 0 ) - - err = 1; - - else - err = 0; - - } - - return err; - -} - -- cgit