]> rtime.felk.cvut.cz Git - frescor/fosa.git/commitdiff
Added a header that is printed at the start of the test
authormgh <mgh@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Wed, 28 Jan 2009 11:44:58 +0000 (11:44 +0000)
committermgh <mgh@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Wed, 28 Jan 2009 11:44:58 +0000 (11:44 +0000)
git-svn-id: http://www.frescor.org/private/svn/frescor/fosa/trunk@1503 35b4ef3e-fd22-0410-ab77-dab3279adceb

src_marte_os/tests/test_non_local_jump/simple_test_non_local_jump.c
src_marte_os/tests/test_non_local_jump/test_fosa_long_jump.c

index d84b2b9681bc359990266bad3c5feb0e67f08d89..889ebdfc169a6832cfb96e31c923724a9220b1e0 100644 (file)
@@ -115,6 +115,13 @@ int main()
     fosa_thread_id_t tid1, tid2;
     int terror = 0;
 
+    // Print test header
+    printf("\n");
+    printf("This test checks the ability to make long jumps in MaRTE OS\n");
+    printf("A periodic workload consumes 1ms or 2ms (every 5 iterations)\n");
+    printf("The budget is set to 1.4ms; when exceeded, the operation is aborted\n");
+    printf("\n");
+
     // set signal mask
     set[0]=BUDGET_OVERRUN_SIGNAL;
     if (fosa_set_accepted_signals(set, 1) !=0) {
index 1d1ffa79d578202579e1b541261e37e6de63bd9b..b6f8a98e67b00653de885db8cdefbaedc8fb4126 100644 (file)
@@ -90,6 +90,13 @@ int main()
     fosa_signal_t signal_set[1];
     fosa_thread_id_t periodic_tid;
 
+    // Print test header
+    printf("\n");
+    printf("This test checks the ability to make long jumps in FOSA\n");
+    printf("A periodic workload consumes 1ms or 7ms (every 5 iterations)\n");
+    printf("The budget is set to 1.4ms; when exceeded, the operation is aborted\n");
+    printf("\n");
+
     memset(&context, 0, sizeof(context) );
 
     memset(&periodic_attr, 0, sizeof(periodic_attr) );