Skip to content

Commit 70612c7

Browse files
nplb test: Change stack allocation size from 4Mb to 1MB (#9030)
nplb test `PosixThreadAttrTest.StackAddrAndSizeAttr` was failing due to large stack size allocation, possibly limitation on platform implementation Bug: 479846471 Change-Id: If502181c9aef3ce889a0309c68f83847a9699058
1 parent afd5cf3 commit 70612c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

starboard/nplb/posix_compliance/posix_thread_attr_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace nplb {
2121
namespace {
2222

23-
constexpr int kStackSize = 4 * 1024 * 1024;
23+
constexpr int kStackSize = 1 * 1024 * 1024;
2424

2525
TEST(PosixThreadAttrTest, InitAttr) {
2626
pthread_attr_t attr;

0 commit comments

Comments
 (0)