diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-07 08:55:48 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-07 08:55:48 +0000 |
commit | 2cf8a7897b9bd9b38cdde479a71f7980bb753d3f (patch) | |
tree | b4f5e70cc69f0349bee6b5cc53a10c3cef24cbdd /test/rt/configuration.xml | |
parent | 35328c52fe6c351092b2f51a394d696fdf98f250 (diff) | |
download | ChibiOS-2cf8a7897b9bd9b38cdde479a71f7980bb753d3f.tar.gz ChibiOS-2cf8a7897b9bd9b38cdde479a71f7980bb753d3f.tar.bz2 ChibiOS-2cf8a7897b9bd9b38cdde479a71f7980bb753d3f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11128 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/rt/configuration.xml')
-rw-r--r-- | test/rt/configuration.xml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/test/rt/configuration.xml b/test/rt/configuration.xml index 3aca04d0a..20fc7ea0b 100644 --- a/test/rt/configuration.xml +++ b/test/rt/configuration.xml @@ -170,6 +170,63 @@ systime_t test_wait_tick(void) { <cases>
<case>
<brief>
+ <value>Port Info.</value>
+ </brief>
+ <description>
+ <value>Port-related info are reported.</value>
+ </description>
+ <condition>
+ <value />
+ </condition>
+ <various_code>
+ <setup_code>
+ <value />
+ </setup_code>
+ <teardown_code>
+ <value />
+ </teardown_code>
+ <local_variables>
+ <value />
+ </local_variables>
+ </various_code>
+ <steps>
+ <step>
+ <description>
+ <value>Prints the version string.</value>
+ </description>
+ <tags>
+ <value />
+ </tags>
+ <code>
+ <value><![CDATA[#if defined(PORT_ARCHITECTURE_NAME)
+test_print("--- Architecture: ");
+test_println(PORT_ARCHITECTURE_NAME);
+#endif
+#if defined(PORT_COMPILER_NAME)
+test_print("--- Compiler: ");
+test_println(PORT_COMPILER_NAME);
+#endif
+#if defined(PORT_NATURAL_ALIGN)
+test_print("--- Natural alignment: ");
+test_printn(PORT_NATURAL_ALIGN);
+test_println("");
+#endif
+#if defined(PORT_STACK_ALIGN)
+test_print("--- Stack alignment: ");
+test_printn(PORT_STACK_ALIGN);
+test_println("");
+#endif
+#if defined(PORT_WORKING_AREA_ALIGN)
+test_print("--- Working area alignment: ");
+test_printn(PORT_WORKING_AREA_ALIGN);
+test_println("");
+#endif]]></value>
+ </code>
+ </step>
+ </steps>
+ </case>
+ <case>
+ <brief>
<value>Kernel Info.</value>
</brief>
<description>
|