diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/include/tests/test.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/include/tests/test.h b/tests/include/tests/test.h index 0acc282e4b..14dc7c781a 100644 --- a/tests/include/tests/test.h +++ b/tests/include/tests/test.h @@ -17,7 +17,7 @@ /* * Set symbol value and make it global. */ -#define TEST_SYMBOL(symbol, address) asm(".set " #symbol ", " #address "\n\t.globl " #symbol) +#define TEST_SYMBOL(symbol, value) asm(".set " #symbol ", " #value "\n\t.globl " #symbol) /* * Define memory region for testing purpose. @@ -29,4 +29,11 @@ TEST_SYMBOL(_e##region, _##region + size); \ TEST_SYMBOL(_##region##_size, size) +/* + * Set start, end and size symbols describing region without allocating memory for it. + */ +#define TEST_REGION_UNALLOCATED(region, start, size) TEST_SYMBOL(_##region, start); \ + TEST_SYMBOL(_e##region, _##region + size); \ + TEST_SYMBOL(_##region##_size, size) + #endif /* _TESTS_TEST_H */ |