restructuring work done, and adding about 400 testcases
diff --git a/testcases/kernel/syscalls/getdents/getdents01.c b/testcases/kernel/syscalls/getdents/getdents01.c
new file mode 100644
index 0000000..86acd95
--- /dev/null
+++ b/testcases/kernel/syscalls/getdents/getdents01.c
@@ -0,0 +1,226 @@
+/*
+ *
+ *   Copyright (c) International Business Machines  Corp., 2001
+ *
+ *   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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+/*
+ * NAME
+ *	getdents01.c
+ *
+ * DESCRIPTION
+ *	getdents01 - get a directory entry
+ *
+ * ALGORITHM
+ *	loop if that option was specified
+ *	issue the system call
+ *	check the errno value
+ *	  if failure, log the errno and issue a FAIL message
+ *	otherwise,
+ *	  if doing functionality testing, 
+ *	    if the directory name of the first entry is "."
+ *	      issue a PASS message
+ *	    otherwise,
+ *	      issue a FAIL message
+ *	      break any remaining tests
+ *	call cleanup
+ *
+ * USAGE:  <for command-line>
+ *  getdents01 [-c n] [-f] [-i n] [-I x] [-p x] [-t]
+ *     where,  -c n : Run n copies concurrently.
+ *             -f   : Turn off functionality Testing.
+ *	       -i n : Execute test n times.
+ *	       -I x : Execute test for x seconds.
+ *	       -P x : Pause for x seconds between iterations.
+ *	       -t   : Turn on syscall timing.
+ *
+ * HISTORY
+ *	03/2001 - Written by Wayne Boyer
+ *
+ * RESTRICTIONS
+ *	Any restrictions
+ */
+
+#include "getdents.h"
+#include "test.h"
+#include "usctest.h"
+
+#include <errno.h>
+#include <fcntl.h>
+#include <linux/types.h>
+#include <linux/dirent.h>
+#include <linux/unistd.h>
+#include <unistd.h>
+
+void cleanup(void);
+void setup(void);
+
+char *TCID = "getdents01";
+int TST_TOTAL = 1;
+extern int Tst_count;
+
+main(int ac, char **av)
+{
+	int lc;				/* loop counter */
+	char *msg;			/* message returned from parse_opts */
+	int rval, fd;
+	int count;
+	const int cnum = 141;		/* system call number 141 = getdents */
+	size_t size = 0;
+	char *dir_name = NULL;
+	struct dirent *dirp;
+
+	/* parse standard options */
+	if ((msg = parse_opts(ac, av, (option_t *)NULL, NULL)) != (char *)NULL){
+		tst_brkm(TBROK, cleanup, "OPTION PARSING ERROR - %s", msg);
+	}
+
+	setup();			/* global setup */
+
+	/* The following loop checks looping state if -i option given */
+	for (lc = 0; TEST_LOOPING(lc); lc++) {
+		/* reset Tst_count in case we are looping */
+		Tst_count = 0;
+
+		/* get the current working directory */
+	
+		if ((dir_name = getcwd(dir_name, size)) == NULL) {
+			tst_brkm(TBROK, cleanup, "Can not get current "
+				 "directory name");
+		}
+	
+		/* allocate some space for the dirent structure */
+	
+		if ((dirp =
+		     (struct dirent *)malloc(sizeof(struct dirent))) == NULL) {
+			tst_brkm(TBROK, cleanup, "malloc failed");
+		}
+	
+		/*
+		 * Set up count to be equal to the sizeof struct dirent,
+		 * just to pick a decent size.
+		 */
+	
+		count = (int)sizeof(struct dirent);
+	
+		/* open the directory and get a file descriptor */
+	
+		if ((fd = open(dir_name, O_RDONLY)) == -1) {
+			tst_brkm(TBROK, cleanup, "open of directory failed");
+		}
+	
+		/*
+		 * Here's a case where invoking the system call directly
+		 * doesn't seem to work.  getdents.h has an assembly 
+		 * macro to do the job.
+		 *
+		 * equivalent to  - getdents(fd, dirp, count);
+		 * if we could call getdents that way.
+		 */
+	
+		rval = GETDENTS_ASM();
+	
+		if (rval < 0) {		/* call returned an error */
+	
+			rval *= -1;
+			TEST_ERROR_LOG(rval);
+	
+			tst_resm(TFAIL, "%s call failed - errno = %d "
+				 ": %s", TCID, rval, strerror(rval));
+			continue;
+		}
+	
+		if (rval == 0) {	/* call returned end of directory */
+			tst_resm(TFAIL, "%s call failed - returned "
+				 "end of directory");
+			continue;
+		}
+
+		if (STD_FUNCTIONAL_TEST) {
+			/*
+			 * Now we have dirp pointing to the "base" dirent
+			 * structure for the directory that we opened.
+			 */
+		
+			/*
+			 * The first dirent structure returned should point
+			 * to the current directory, AKA "."
+			 */
+		
+			if (strcmp(".", dirp->d_name) == 0) {
+				tst_resm(TPASS, "%s call succeeded", TCID);
+			} else {
+				tst_resm(TFAIL, "%s call failed - "
+					 "unexpected directory name");
+			}
+		} else {
+			tst_resm(TPASS, "call succeeded");
+		}
+
+		/*
+		 * clean up things in case we are looping
+		 */
+		free(dir_name);
+		dir_name = NULL;
+
+		free(dirp);
+
+		if ((rval = close(fd)) == -1) {
+			tst_brkm(TBROK, cleanup, "file close failed");
+		}
+	}
+
+	cleanup();
+
+	/*NOTREACHED*/
+}
+
+/*
+ * setup() - performs all the ONE TIME setup for this test.
+ */
+void
+setup(void)
+{
+	/* capture signals */
+	tst_sig(NOFORK, DEF_HANDLER, cleanup);
+
+	/* Pause if that option was specified */
+	TEST_PAUSE;
+
+	/* create a test directory and cd into it */
+	tst_tmpdir();
+}
+
+/*
+ * cleanup() - performs all the ONE TIME cleanup for this test at completion
+ * 	       or premature exit.
+ */
+void
+cleanup(void)
+{
+	/* remove the test directory */
+	tst_rmdir();
+
+	/*
+	 * print timing stats if that option was specified.
+	 * print errno log if that option was specified.
+	 */
+	TEST_CLEANUP;
+
+	/* exit with return code appropriate for results */
+	tst_exit();
+}
+