update CODEOWNER && fix some lib pretest by jiage && update pretest conf
This commit is contained in:
@ -141,7 +141,7 @@ int test(int &i, int once_invoke_hold)
|
|||||||
ret = OB_SUCCESS;
|
ret = OB_SUCCESS;
|
||||||
} else {
|
} else {
|
||||||
char buf[once_invoke_hold];
|
char buf[once_invoke_hold];
|
||||||
MEMSET(buf, 0, once_invoke_hold);
|
memset(buf, reinterpret_cast<std::uintptr_t>(&buf[0]) & 0xFF, once_invoke_hold); // disable compiler optimize out
|
||||||
ret = SMART_CALL(test(--i, once_invoke_hold));
|
ret = SMART_CALL(test(--i, once_invoke_hold));
|
||||||
void *stack_addr_after = nullptr;
|
void *stack_addr_after = nullptr;
|
||||||
size_t stack_size_after = 0;
|
size_t stack_size_after = 0;
|
||||||
|
|||||||
@ -312,7 +312,7 @@ void do_alloc()
|
|||||||
{
|
{
|
||||||
int ret = OB_SUCCESS;
|
int ret = OB_SUCCESS;
|
||||||
char b[N];
|
char b[N];
|
||||||
cout << b[0] << endl;
|
memset(b, reinterpret_cast<std::uintptr_t>(&b[0]) & 0xFF, N); // disable compiler optimize out
|
||||||
has_malloc = false;
|
has_malloc = false;
|
||||||
SMART_VAR(char[(8L<<10)+1], buf) {
|
SMART_VAR(char[(8L<<10)+1], buf) {
|
||||||
UNUSEDx(buf);
|
UNUSEDx(buf);
|
||||||
|
|||||||
Reference in New Issue
Block a user