summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-11-21 11:13:16 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-11-21 11:15:25 +0100
commit8329e37a2459916c3796e029a7aeba6382dd6824 (patch)
tree2eac4c8708c0ec1d6eab38ffc243ed2f8cbabbab /spec
parent6c253b0bdff61ea62a853f4a8435b760fadb7b93 (diff)
spec: Fix memory benchmark configurations
Diffstat (limited to 'spec')
-rw-r--r--spec/rtems/message/val/mem-bcst-rcv.yml2
-rw-r--r--spec/rtems/message/val/mem-snd-rcv-del.yml2
-rw-r--r--spec/rtems/message/val/mem-snd-rcv.yml2
-rw-r--r--spec/rtems/message/val/mem-ugt-rcv.yml2
-rw-r--r--spec/rtems/timer/val/mem-after.yml2
-rw-r--r--spec/rtems/timer/val/mem-cancel.yml2
-rw-r--r--spec/rtems/timer/val/mem-delete.yml2
-rw-r--r--spec/rtems/timer/val/mem-reset.yml2
-rw-r--r--spec/rtems/timer/val/mem-srv-after.yml2
-rw-r--r--spec/rtems/timer/val/mem-srv-init.yml2
-rw-r--r--spec/rtems/timer/val/mem-srv-when.yml2
-rw-r--r--spec/rtems/timer/val/mem-when.yml2
12 files changed, 24 insertions, 0 deletions
diff --git a/spec/rtems/message/val/mem-bcst-rcv.yml b/spec/rtems/message/val/mem-bcst-rcv.yml
index 40a8ddda..136b896e 100644
--- a/spec/rtems/message/val/mem-bcst-rcv.yml
+++ b/spec/rtems/message/val/mem-bcst-rcv.yml
@@ -21,6 +21,8 @@ test-code: |
(void) rtems_message_queue_receive( 0, NULL, NULL, 0, 0 );
}
+ #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/message/val/mem-snd-rcv-del.yml b/spec/rtems/message/val/mem-snd-rcv-del.yml
index 44c73431..768cc772 100644
--- a/spec/rtems/message/val/mem-snd-rcv-del.yml
+++ b/spec/rtems/message/val/mem-snd-rcv-del.yml
@@ -22,6 +22,8 @@ test-code: |
(void) rtems_message_queue_delete( 0 );
}
+ #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/message/val/mem-snd-rcv.yml b/spec/rtems/message/val/mem-snd-rcv.yml
index 6a9b8341..04e4a83b 100644
--- a/spec/rtems/message/val/mem-snd-rcv.yml
+++ b/spec/rtems/message/val/mem-snd-rcv.yml
@@ -21,6 +21,8 @@ test-code: |
(void) rtems_message_queue_receive( 0, NULL, NULL, 0, 0 );
}
+ #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/message/val/mem-ugt-rcv.yml b/spec/rtems/message/val/mem-ugt-rcv.yml
index 4f177a70..24d81506 100644
--- a/spec/rtems/message/val/mem-ugt-rcv.yml
+++ b/spec/rtems/message/val/mem-ugt-rcv.yml
@@ -21,6 +21,8 @@ test-code: |
(void) rtems_message_queue_receive( 0, NULL, NULL, 0, 0 );
}
+ #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-after.yml b/spec/rtems/timer/val/mem-after.yml
index d2cf32ac..586b2b2e 100644
--- a/spec/rtems/timer/val/mem-after.yml
+++ b/spec/rtems/timer/val/mem-after.yml
@@ -20,6 +20,8 @@ test-code: |
(void) rtems_timer_fire_after( 0, 0, NULL, NULL );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-cancel.yml b/spec/rtems/timer/val/mem-cancel.yml
index fab5c177..dd2a66bf 100644
--- a/spec/rtems/timer/val/mem-cancel.yml
+++ b/spec/rtems/timer/val/mem-cancel.yml
@@ -19,6 +19,8 @@ test-code: |
(void) rtems_timer_cancel( 0 );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-delete.yml b/spec/rtems/timer/val/mem-delete.yml
index f142fd6a..cc68ebb0 100644
--- a/spec/rtems/timer/val/mem-delete.yml
+++ b/spec/rtems/timer/val/mem-delete.yml
@@ -19,6 +19,8 @@ test-code: |
(void) rtems_timer_delete( 0 );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-reset.yml b/spec/rtems/timer/val/mem-reset.yml
index 98092728..c64a8301 100644
--- a/spec/rtems/timer/val/mem-reset.yml
+++ b/spec/rtems/timer/val/mem-reset.yml
@@ -19,6 +19,8 @@ test-code: |
(void) rtems_timer_reset( 0 );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-srv-after.yml b/spec/rtems/timer/val/mem-srv-after.yml
index 55424910..89c6691e 100644
--- a/spec/rtems/timer/val/mem-srv-after.yml
+++ b/spec/rtems/timer/val/mem-srv-after.yml
@@ -20,6 +20,8 @@ test-code: |
(void) rtems_timer_server_fire_after( 0, 0, NULL, NULL );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-srv-init.yml b/spec/rtems/timer/val/mem-srv-init.yml
index 9274c9b2..be95d467 100644
--- a/spec/rtems/timer/val/mem-srv-init.yml
+++ b/spec/rtems/timer/val/mem-srv-init.yml
@@ -33,6 +33,8 @@ test-code: |
#define CONFIGURE_TASK_STACK_DEALLOCATOR task_stack_deallocate
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-srv-when.yml b/spec/rtems/timer/val/mem-srv-when.yml
index 57fe4e7c..1487053f 100644
--- a/spec/rtems/timer/val/mem-srv-when.yml
+++ b/spec/rtems/timer/val/mem-srv-when.yml
@@ -20,6 +20,8 @@ test-code: |
(void) rtems_timer_server_fire_when( 0, NULL, NULL, NULL );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \
diff --git a/spec/rtems/timer/val/mem-when.yml b/spec/rtems/timer/val/mem-when.yml
index 2d31c418..02fbc20b 100644
--- a/spec/rtems/timer/val/mem-when.yml
+++ b/spec/rtems/timer/val/mem-when.yml
@@ -20,6 +20,8 @@ test-code: |
(void) rtems_timer_fire_when( 0, NULL, NULL, NULL );
}
+ #define CONFIGURE_MAXIMUM_TIMERS 1
+
#define TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
#define TASK_STORAGE_SIZE \