mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
Sylvain Petreolle <[email protected]>:
Add makefile for "polytest" test & enable it. Fix compile warnings for diskspeed & zwcontinue tests svn path=/trunk/; revision=13245
This commit is contained in:
@@ -8,7 +8,6 @@ include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
# Broken tests
|
||||
# dnsapi iptest lan regdump subclass
|
||||
# polytest - Needs a mingw makefile
|
||||
|
||||
TEST_APPS = \
|
||||
accelerator \
|
||||
@@ -66,6 +65,7 @@ oskittcp \
|
||||
p_dup_handle \
|
||||
palbitblt \
|
||||
patblt \
|
||||
polytest \
|
||||
popupmenu \
|
||||
primitives \
|
||||
pteb \
|
||||
|
||||
@@ -81,7 +81,7 @@ int main(void)
|
||||
HANDLE hDevice;
|
||||
OVERLAPPED ov;
|
||||
|
||||
PBYTE Buffer;
|
||||
PBYTE Buffer = NULL ;
|
||||
DWORD Start;
|
||||
DWORD dwReturned;
|
||||
DWORD dwReadTotal;
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
|
||||
PATH_TO_TOP = ../../../reactos
|
||||
|
||||
TARGET_NORC = yes
|
||||
|
||||
TARGET_TYPE = program
|
||||
|
||||
TARGET_APPTYPE = windows
|
||||
|
||||
TARGET_NAME = polytest
|
||||
|
||||
TARGET_SDKLIBS = kernel32.a gdi32.a
|
||||
|
||||
TARGET_OBJECTS = polytest.o
|
||||
|
||||
TARGET_CFLAGS = -Wall -Werror
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
include $(TOOLS_PATH)/helper.mk
|
||||
|
||||
# EOF
|
||||
@@ -35,7 +35,7 @@ static void randbytes(void * p, size_t n)
|
||||
{
|
||||
unsigned char * b;
|
||||
size_t i;
|
||||
int r;
|
||||
int r = rand();
|
||||
|
||||
b = (unsigned char *)p;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user