git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@774 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-02-16 20:38:05 +00:00
parent dd85cc143d
commit 0098a8dbed
2 changed files with 3 additions and 3 deletions

View File

@ -237,11 +237,11 @@ msg_t TestThread(void *p) {
global_fail = FALSE;
i = 0;
while (patterns[i]) {
j = 0;
while (patterns[i][j]) {
#if DELAY_BETWEEN_TESTS > 0
chThdSleepMilliseconds(DELAY_BETWEEN_TESTS);
#endif
j = 0;
while (patterns[i][j]) {
test_println("---------------------------------------------------------------------------");
test_print("--- Test Case ");
test_printn(i + 1);

View File

@ -332,7 +332,7 @@ const struct testcase testbmk8 = {
* Test sequence for benchmarks pattern.
*/
const struct testcase *patternbmk[] = {
#if TEST_NO_BENCHMARKS
#if !TEST_NO_BENCHMARKS
&testbmk1,
&testbmk2,
&testbmk3,