2009-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>

* tm20/task1.c: Use rtems_test_assert() consistently instead of system
	assert(). rtems_test_assert() is designed to integrate into the RTEMS
	test suite infrastructure.
This commit is contained in:
Joel Sherrill
2009-12-08 17:53:00 +00:00
parent 9f90987bed
commit 593ae972fc
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2009-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* tm20/task1.c: Use rtems_test_assert() consistently instead of system
assert(). rtems_test_assert() is designed to integrate into the RTEMS
test suite infrastructure.
2009-11-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* tmoverhd/testtask.c: Apply RTEMS_GCC_NOWARN_USED.

View File

@@ -11,7 +11,6 @@
#define CONFIGURE_INIT
#include "system.h"
#include <assert.h>
rtems_device_major_number _STUB_major = 1;
@@ -160,7 +159,7 @@ rtems_task Task_1(
buffer_count++;
assert( buffer_count < PARTITION_BUFFER_POINTERS );
rtems_test_assert( buffer_count < PARTITION_BUFFER_POINTERS );
}
benchmark_timer_initialize();