summaryrefslogtreecommitdiff
path: root/tests/Dirent_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Dirent_Test.cpp')
-rw-r--r--tests/Dirent_Test.cpp60
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/Dirent_Test.cpp b/tests/Dirent_Test.cpp
deleted file mode 100644
index d6c71b313e7..00000000000
--- a/tests/Dirent_Test.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Dirent_Test.cpp
-//
-// = DESCRIPTION
-// This is a test of the opendir and readdir emulation provided by the
-// class ACE_OS_Dirent. It is used to ensure that the emulation code
-// works properly on win32. As the emulation code is not compiled in other
-// platforms, this test also ensures that there is no impact to platforms
-// that natively support directory scanning operations.
-//
-// = AUTHOR
-// Phil Mesnier <mesnier_p@ociweb.com>
-//
-// ============================================================================
-
-#include "test_config.h"
-#include "ace/OS.h"
-
-ACE_RCSID(tests, Dirent_Test, "$Id$")
-
-int
-main (int, ACE_TCHAR *[])
-{
- ACE_START_TEST (ACE_TEXT ("Dirent_Test"));
- int status = 0;
-
- ACE_DIR *directory = ACE_OS::opendir (ACE_TEXT ("../tests"));
-
- int entrycount = 0;
- for (; ACE_OS::readdir(directory) != 0; entrycount++);
-
- switch (entrycount) {
- case 0 :
- {
- ACE_ERROR ((LM_ERROR, "readdir failed to read anything\n"));
- status = -1;
- break;
- }
- case 1 :
- {
- ACE_ERROR ((LM_ERROR, "readdir failed, only matched directory name\n"));
- status = -1;
- break;
- }
- default :
- {
- ACE_DEBUG ((LM_DEBUG, "readdir succeeded, read %d entries\n",entrycount));
- }
- }
-
- ACE_END_TEST;
- return status;
-}