summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-04-22 09:10:24 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-04-23 12:48:04 -0500
commit694f15558978753b07c09b94d385ba31b6f69d36 (patch)
treedcf5c9435b2f5abc29291adc1fa9aac1f9b1ae83
parentsimsh*.tcfg: Add iostream (diff)
downloadrtems-694f15558978753b07c09b94d385ba31b6f69d36.tar.bz2
sp13/system.h: Account for all message buffers
There may be a way to reduce the memory requirements but it will require time to ensure the math is right and it passes on all targets. At the current time, it fails on 22 BSPs which run on simulators.
-rw-r--r--testsuites/sptests/sp13/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp13/system.h b/testsuites/sptests/sp13/system.h
index f879096e12..20ecc2f2f1 100644
--- a/testsuites/sptests/sp13/system.h
+++ b/testsuites/sptests/sp13/system.h
@@ -90,10 +90,10 @@ TEST_EXTERN rtems_name Queue_name[ 4 ]; /* array of queue names */
*/
#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
/* Q1 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 100, MESSAGE_SIZE ) + \
- /* Q2 */ /* CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 10, MESSAGE_SIZE ) + */ \
+ /* Q2 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 10, MESSAGE_SIZE ) + \
/* Q3 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 100, MESSAGE_SIZE ) + \
/* Q1 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 100, 20 ) + \
- /* Q1 */ /* CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 2, 1030 ) */
+ /* Q1 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 2, 1030 )
#define CONFIGURE_EXTRA_TASK_STACKS (3 * RTEMS_MINIMUM_STACK_SIZE)