aboutsummaryrefslogtreecommitdiffstats
path: root/test/nil
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-03-20 11:15:33 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-03-20 11:15:33 +0000
commit200d006783ed08609d636650a0df2471acbb1e5f (patch)
tree70c949d774a03ee4cfc35a1c54ca950587705170 /test/nil
parent20481792013d3b5944f40b2a7208714e3c10b2cf (diff)
downloadChibiOS-200d006783ed08609d636650a0df2471acbb1e5f.tar.gz
ChibiOS-200d006783ed08609d636650a0df2471acbb1e5f.tar.bz2
ChibiOS-200d006783ed08609d636650a0df2471acbb1e5f.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9141 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/nil')
-rw-r--r--test/nil/configuration.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/nil/configuration.xml b/test/nil/configuration.xml
index bb6fbaf4e..1181fb341 100644
--- a/test/nil/configuration.xml
+++ b/test/nil/configuration.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<SPC5-Config version="1.0.0">
- <application name="Test Suite" version="1.0.0" standalone="true" locked="false">
- <description>Test specification for the NASA OSAL ChibiOS extension.</description>
+ <application name="ChibiOS/NIL Test Suite" version="1.0.0" standalone="true" locked="false">
+ <description>Test Specification for ChibiOS/NIL.</description>
<component id="org.chibios.spc5.components.platform.generic">
<component id="org.chibios.spc5.components.chibios_unitary_tests_engine" />
</component>
@@ -1408,7 +1408,7 @@ test_assert(n == sz, "size changed");]]></value>
<value />
</teardown_code>
<local_variables>
- <value><![CDATA[void *p1;
+ <value><![CDATA[void *p1;
size_t total_size, largest_size;]]></value>
</local_variables>
</various_code>
@@ -1421,7 +1421,7 @@ size_t total_size, largest_size;]]></value>
<value />
</tags>
<code>
- <value><![CDATA[(void)chHeapStatus(NULL, &total_size, &largest_size);
+ <value><![CDATA[(void)chHeapStatus(NULL, &total_size, &largest_size);
p1 = chHeapAlloc(&test_heap, ALLOC_SIZE);
test_assert(p1 != NULL, "allocation failed");
chHeapFree(p1);]]></value>
@@ -1435,7 +1435,7 @@ chHeapFree(p1);]]></value>
<value />
</tags>
<code>
- <value><![CDATA[p1 = chHeapAlloc(NULL, (size_t)-256);
+ <value><![CDATA[p1 = chHeapAlloc(NULL, (size_t)-256);
test_assert(p1 == NULL, "allocation not failed");]]></value>
</code>
</step>