2017-11-15 08:09:54 +00:00
|
|
|
#include "unity.h"
|
|
|
|
|
2019-04-24 13:02:25 +00:00
|
|
|
#if CONFIG_COMPILER_STACK_CHECK
|
2017-11-15 08:09:54 +00:00
|
|
|
|
|
|
|
static void recur_and_smash_cxx()
|
|
|
|
{
|
|
|
|
static int cnt;
|
|
|
|
volatile uint8_t buf[50];
|
|
|
|
volatile int num = sizeof(buf)+10;
|
|
|
|
|
|
|
|
if (cnt++ < 1) {
|
|
|
|
recur_and_smash_cxx();
|
|
|
|
}
|
|
|
|
for (int i = 0; i < num; i++) {
|
|
|
|
buf[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE("stack smashing protection CXX", "[stack_check] [ignore]")
|
|
|
|
{
|
|
|
|
recur_and_smash_cxx();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|