blob: 6147fba53c4145d19c8439f65fc120e065ceb4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/** _minimal.c - a minimal regression test, picked from the MP8 fork of sdcc.
The _ in the name was chosen to make this the first regression test,
since it is meant to bring up regression testing for a new port,
as it allows making the regression test framework work first.
*/
#include <testfwk.h>
void
testMinimal(void)
{
ASSERT(1);
}
|