From 99ef2719fb3d703fe38c4113cd7f5adec516dd3a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 28 Oct 2016 20:29:21 +0200 Subject: test: remove test suite The test suite is now a developed in a separate git repository. See here: http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git The test suite should be just like every other software compiled with the cross-toolchain. In the past strange problems where found when the test suite got build in the toolchain creation step. --- test/misc/tst-nftw.c | 57 ---------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 test/misc/tst-nftw.c (limited to 'test/misc/tst-nftw.c') diff --git a/test/misc/tst-nftw.c b/test/misc/tst-nftw.c deleted file mode 100644 index 76d11eb41..000000000 --- a/test/misc/tst-nftw.c +++ /dev/null @@ -1,57 +0,0 @@ -#define _XOPEN_SOURCE 500 -#define _GNU_SOURCE -#include -#include -#include -#include -#include -#include - -int result = 0; - -static int process_one_entry(const char *fpath, const struct stat *sb, - int typeflag, struct FTW *ftwbuf) -{ - - struct stat buf; - const char *rel_path = fpath+ftwbuf->base; - - printf("Processing %s in working dir %s\n", - rel_path, get_current_dir_name()); - if (stat(rel_path, &buf) < 0) { - perror("Oops...relative path does not exist in current directory"); - result = 1; - } -} - -static int -do_test(void) -{ - char *path = "/tmp/stest_dir"; - char *subpath = "/tmp/stest_dir/d1"; - char *filepath = "/tmp/stest_dir/f1"; - char *filesubpath = "/tmp/stest_dir/d1/f2"; - - if ((mkdir(path, 0700)) < 0) - perror("Creating path"); - if ((mkdir(subpath, 0700)) < 0) - perror("Creating subpath"); - if ((open(filepath, O_CREAT)) < 0) - perror("Opening filepath"); - if ((open(filesubpath, O_CREAT)) < 0) - perror("Opening filesubpath"); - - if (nftw(path, process_one_entry, 100, (FTW_CHDIR|FTW_DEPTH|FTW_PHYS)) < 0) - perror("ntfw"); - - unlink(filesubpath); - unlink(filepath); - rmdir(subpath); - rmdir(path); - - return result; -} - -#define TIMEOUT 5 -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" -- cgit v1.2.3