1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Support: reduce stack used in default size test.

When the sanitizers aren't enabled they can use more than 1KB of stack, causing
an overflow where there shouldn't be.

Should fix Green Dragon test.
This commit is contained in:
Tim Northover 2021-07-13 11:23:03 +01:00
parent 1faa7a9983
commit 17974afd26

View File

@ -82,7 +82,7 @@ TEST(Threading, RunOnThreadSync) {
#if defined(__APPLE__)
TEST(Threading, AppleStackSize) {
llvm::thread Thread([] {
volatile unsigned char Var[8 * 1024 * 1024 - 1024];
volatile unsigned char Var[8 * 1024 * 1024 - 10240];
Var[0] = 0xff;
ASSERT_EQ(Var[0], 0xff);
});