mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
Start of ddraw test case.
svn path=/trunk/; revision=26739
This commit is contained in:
parent
053c08fc8e
commit
1c0a28e0fa
5 changed files with 139 additions and 0 deletions
23
rostests/dxtest/ddraw/testlist.cpp
Normal file
23
rostests/dxtest/ddraw/testlist.cpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef _DDRAWTESTLIST_H
|
||||
#define _DDRAWTESTLIST_H
|
||||
|
||||
#include "ddrawtest.h"
|
||||
|
||||
/* include the tests */
|
||||
#include "tests/CreateDDraw.cpp"
|
||||
|
||||
/* The List of tests */
|
||||
TEST TestList[] =
|
||||
{
|
||||
{ "CreateDDraw", Test_CreateDDraw }
|
||||
};
|
||||
|
||||
/* The function that gives us the number of tests */
|
||||
extern "C" INT NumTests(void)
|
||||
{
|
||||
return sizeof(TestList) / sizeof(TEST);
|
||||
}
|
||||
|
||||
#endif /* _DDRAWTESTLIST_H */
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue