diff --git a/reactos/apps/tests/file/.cvsignore b/reactos/apps/tests/file/.cvsignore deleted file mode 100644 index d63774a7353..00000000000 --- a/reactos/apps/tests/file/.cvsignore +++ /dev/null @@ -1,6 +0,0 @@ -*.o -*.d -*.exe -*.coff -*.sym -*.map diff --git a/reactos/apps/tests/file/Makefile b/reactos/apps/tests/file/Makefile deleted file mode 100644 index 15dc8754bb4..00000000000 --- a/reactos/apps/tests/file/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# $Id: Makefile,v 1.9 2003/11/14 17:13:17 weiden Exp $ - -PATH_TO_TOP = ../../.. - -TARGET_NORC = yes - -TARGET_TYPE = program - -TARGET_APPTYPE = console - -TARGET_NAME = file - -TARGET_OBJECTS = $(TARGET_NAME).o - -TARGET_CFLAGS = -Wall -Werror - -include $(PATH_TO_TOP)/rules.mak - -include $(TOOLS_PATH)/helper.mk - -# EOF diff --git a/reactos/apps/tests/file/file.c b/reactos/apps/tests/file/file.c deleted file mode 100644 index f803fb45e6c..00000000000 --- a/reactos/apps/tests/file/file.c +++ /dev/null @@ -1,54 +0,0 @@ -/*********************************************************** - * File read/write test utility * - **********************************************************/ - -#include -#include -#include - -int main( void ) -{ - HANDLE file; - char buffer[4096]; - DWORD wrote; - int c; - - file = CreateFile("test.dat", - GENERIC_READ | GENERIC_WRITE, - 0, - NULL, - CREATE_ALWAYS, - 0, - 0); - - if (file == INVALID_HANDLE_VALUE) - { - printf("Error opening file (Status %lx)\n", GetLastError()); - return 1; - } - for( c = 0; c < sizeof( buffer ); c++ ) - buffer[c] = (char)c; - printf("Writing file\n"); - if (WriteFile( file, buffer, 4096, &wrote, NULL) == FALSE) - { - printf("Error writing file (Status %lx)\n", GetLastError()); - exit(2); - } - printf("Reading file\n"); - SetFilePointer( file, 0, 0, FILE_BEGIN ); - if (ReadFile( file, buffer, 4096, &wrote, NULL) == FALSE) - { - printf("Error reading file (Status %lx)\n", GetLastError()); - exit(3); - } - for( c = 0; c < sizeof( buffer ); c++ ) - if( buffer[c] != (char)c ) - { - printf( "Error: data read back is not what was written\n" ); - CloseHandle( file ); - return 0; - } - printf("Finished, works fine\n"); - CloseHandle( file ); - return 0; -}