summaryrefslogtreecommitdiff
path: root/test-trace.ini
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-08-04 09:19:55 +1000
committerChris Johns <chrisj@rtems.org>2014-08-04 09:19:55 +1000
commit28884db485eba2b580d8da526e190f903b2e6174 (patch)
tree6cd24717823743f18041b6113351ff6a3468d3b4 /test-trace.ini
parent482ca38073a878814640089086c0ba262e80e4cd (diff)
rtems-tld: Add trace configuration support.
Extend the configuration support to provide the needed configuration required to generate the C stub support.
Diffstat (limited to 'test-trace.ini')
-rw-r--r--test-trace.ini35
1 files changed, 32 insertions, 3 deletions
diff --git a/test-trace.ini b/test-trace.ini
index 049e8e8..2901952 100644
--- a/test-trace.ini
+++ b/test-trace.ini
@@ -3,12 +3,41 @@
;
; We must provide a top level trace section.
;
-[trace]
+[tracer]
;
; Name of the trace.
;
name = RTEMS Trace Linker Test
;
-; Include the function signatures.
+; The BSP.
;
-include = test-fsigs.ini
+bsp = sis
+;
+; Functions to trace.
+;
+trace = test-trace, test-trace-funcs, rtems-api-task
+;
+; Define the wrapper.
+;
+wrapper = test-trace, rtems-api
+;
+; Include RTEMS Trace support.
+;
+include = rtems.ini
+
+;
+; User application trace example.
+;
+[test-trace-funcs]
+trace = test_trace_1, test_trace_2
+
+[test-trace]
+trace = test_trace_3
+header = '#include "test-trace.h"'
+define = "#define TEST_TRACE 1"
+signature = test-signatures
+
+[test-signatures]
+test_trace_1 = void, int
+test_trace_2 = test_type_2, test_type_1
+test_trace_3 = float, float*