summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-27 10:03:16 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-27 10:03:54 +0200
commite1fdf975acdcd33a52cdc5d1c746c6946c90394e (patch)
tree71f8bb2bb6bbbb0398255a7e2894e97eae638692 /testsuites/psxtests
parentscore: Fix objects local table initialization (diff)
downloadrtems-e1fdf975acdcd33a52cdc5d1c746c6946c90394e.tar.bz2
psxconfig01: Increase region area
This fixes a test failure on 64-bit systems with RTEMS_DEBUG enabled.
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/psxconfig01/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxconfig01/init.c b/testsuites/psxtests/psxconfig01/init.c
index f1fcfe2b3b..3a0e5b3049 100644
--- a/testsuites/psxtests/psxconfig01/init.c
+++ b/testsuites/psxtests/psxconfig01/init.c
@@ -200,7 +200,7 @@ static rtems_task Init(rtems_task_argument argument);
#include <rtems/confdefs.h>
typedef struct RTEMS_ALIGNED(RTEMS_PARTITION_ALIGNMENT) {
- uint64_t data [16];
+ uint64_t data [32];
} area;
#if CONFIGURE_MAXIMUM_PARTITIONS > 0