Basics of test case framework

This commit is contained in:
Angus Gratton 2016-02-08 14:15:12 +11:00
parent 9dec5dd628
commit 97a46e8c1a
7 changed files with 162 additions and 0 deletions

11
tests/ld/tests.ld Normal file
View file

@ -0,0 +1,11 @@
/* Extra linker script sections used only for test case registration */
SECTIONS
{
.irom0.text : ALIGN(4)
{
_testcases_start = ABSOLUTE(.);
*(.testcases.text)
_testcases_end = ABSOLUTE(.);
} > irom0_0_seg
}