diff --git a/templates/concurrency_view/ada_wrappers_body/ri.tmplt b/templates/concurrency_view/ada_wrappers_body/ri.tmplt
index 5c78066ed5a44a7e2bedddaa89b1165d851ca2cb..4229f15e3261db51f6f02d260a64d42ad28370c0 100644
--- a/templates/concurrency_view/ada_wrappers_body/ri.tmplt
+++ b/templates/concurrency_view/ada_wrappers_body/ri.tmplt
@@ -52,8 +52,9 @@ begin
 @@END_TABLE@@
 @@END_IF@@ @@-- Has param
             Put_Value (@_Partition_Name_@_@_Calling_Threads_@_k, Value);
-            Err := Send_Output (@_Partition_Name_@_@_Calling_Threads_@_k,
-                               @_Calling_Threads_@_Thread_@_Calling_Threads_@_others_Port_Type'(OUTPORT_@_Name_@));
+            Send_Output (@_Partition_Name_@_@_Calling_Threads_@_k,
+                         @_Calling_Threads_@_Thread_@_Calling_Threads_@_others_Port_Type'(OUTPORT_@_Name_@),
+                         Err);
            --  TODO : Report the error if any
          end;
 @@-- End of the "case" block
diff --git a/test/Demo_C/regression.py b/test/Demo_C/regression.py
index ce92563c0faef0339be16dc8dcba8d92fb1fde34..4e4e5db83e4020c1c1b1dff2e4793efa68f187e1 100755
--- a/test/Demo_C/regression.py
+++ b/test/Demo_C/regression.py
@@ -4,6 +4,7 @@ import sys
 timeout = 5
 
 binaries = [
+    "taste-simulate-leon3 output.rtems/binaries/demo_c_leon3_rtems.exe",
     "work/binaries/demo_c"
     ]
 
diff --git a/test/Makefile b/test/Makefile
index f4db18629d2befce64bc42bd77502570103491e0..c86a53c030bc214b59095b4ba4d785bad8ef641a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
 DISABLED_TESTS=common/ shared-components/ logs/
-export EXPECTED_FAILURES=test-stm32 air-iop1 stm32-serial-pohiada2 test-air-portnames stm32-f407-serial-pohi test-air-multiports test-air-interpartcomm  stm32-f407-serial  test-air-2cyclics stm32-f407-encodeReal TrafficLight_stm32f407_NonDistrib TrafficLight_stm32f407 msp430_cyclic_calls_protected msp430_cyclic_calls_sporadic msp430_cyclic_calls_unprotected msp430_protected_calls_protected msp430_protected_calls_sporadic msp430_protected_calls_unprotected msp430_sporadic_calls_protected msp430_sporadic_calls_sporadic msp430_sporadic_calls_unprotected msp430_unprotected_calls_protected msp430_unprotected_calls_sporadic msp430_unprotected_calls_unprotected  Demo_Database Demo_ContextParams
+export EXPECTED_FAILURES=test-stm32 air-iop1 stm32-serial-pohiada2 test-air-portnames stm32-f407-serial-pohi test-air-multiports test-air-interpartcomm  stm32-f407-serial  test-air-2cyclics stm32-f407-encodeReal TrafficLight_stm32f407_NonDistrib TrafficLight_stm32f407 msp430_cyclic_calls_protected msp430_cyclic_calls_sporadic msp430_cyclic_calls_unprotected msp430_protected_calls_protected msp430_protected_calls_sporadic msp430_protected_calls_unprotected msp430_sporadic_calls_protected msp430_sporadic_calls_sporadic msp430_sporadic_calls_unprotected msp430_unprotected_calls_protected msp430_unprotected_calls_sporadic msp430_unprotected_calls_unprotected msp430_ada msp430_cpp  msp430_driver_e_usci_serial msp430_sdl_ada msp430_sdl_c
 TEST_CASES=$(sort $(filter-out $(DISABLED_TESTS), $(dir $(wildcard */))))
 export MAKEFLAGS="-j $(grep -c ^processor /proc/cpuinfo)"
 MAKEFILE_PATH   := $(abspath $(lastword $(MAKEFILE_LIST)))