-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d430e1
commit 47d3f0c
Showing
5 changed files
with
76 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/*************************************************************************\ | ||
* Copyright (c) 2011 UChicago Argonne LLC, as Operator of Argonne | ||
* National Laboratory. | ||
* EPICS BASE is distributed subject to a Software License Agreement found | ||
* in file LICENSE that is included with this distribution. | ||
\*************************************************************************/ | ||
|
||
/* | ||
* Run Example tests as a batch. | ||
* | ||
*/ | ||
|
||
#include "epicsUnitTest.h" | ||
#include "epicsExit.h" | ||
#include "dbmf.h" | ||
|
||
int exampleTest(void); | ||
|
||
void epicsRunExampleTests(void) | ||
{ | ||
testHarness(); | ||
|
||
runTest(exampleTest); | ||
|
||
dbmfFreeChunks(); | ||
|
||
epicsExit(0); /* Trigger test harness */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/*************************************************************************\ | ||
* Copyright (c) 2011 UChicago Argonne LLC, as Operator of Argonne | ||
* National Laboratory. | ||
* EPICS BASE is distributed subject to a Software License Agreement found | ||
* in file LICENSE that is included with this distribution. | ||
\*************************************************************************/ | ||
|
||
extern void epicsRunExampleTests(void); | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
epicsRunExampleTests(); /* calls epicsExit(0) */ | ||
return 0; | ||
} |