tests-mbed_drivers-crc: Increase the task stack

pull/10782/head
d-kato 2019-06-07 11:07:59 +09:00
parent 489bd10626
commit 4eca482061
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ void test_thread_safety()
TEST_ASSERT_EQUAL(0, ct.compute_partial_start(&crc));
TEST_ASSERT_EQUAL(0, ct.compute_partial((void *)&test, 4, &crc));
Thread t1(osPriorityNormal1, 320);
Thread t1(osPriorityNormal1, 380);
t1.start(callback(test_thread));
TEST_ASSERT_EQUAL(0, ct.compute_partial((void *)&test[4], 5, &crc));
TEST_ASSERT_EQUAL(0, ct.compute_partial_stop(&crc));