mirror of
https://github.com/reactos/reactos.git
synced 2025-06-19 06:16:19 +00:00
[KMTESTS]
- add a minimal example test so there's something to see when running kmtest - remove _DLL and __USE_CRTIMP in accordance with r52213 svn path=/branches/GSoC_2011/KMTestSuite/; revision=52215
This commit is contained in:
parent
e95992c699
commit
1de7bf0885
4 changed files with 24 additions and 2 deletions
16
kmtests/example/Example.c
Normal file
16
kmtests/example/Example.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* PROJECT: ReactOS kernel-mode tests
|
||||
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
||||
* PURPOSE: Kernel-Mode Test Suite Example Test kernel-mode part
|
||||
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
|
||||
*/
|
||||
|
||||
#include <ntddk.h>
|
||||
#include <kmt_test.h>
|
||||
#include <kmt_log.h>
|
||||
|
||||
VOID Test_Example(VOID)
|
||||
{
|
||||
/* TODO: this should be trace(), as in winetests */
|
||||
LogPrint("Message from kernel\n");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue