diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-03 08:48:20 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-03 08:48:20 +0000 |
commit | 9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a (patch) | |
tree | 86acab83e6b86703239954be6d8240cf49accb8b /test/test.h | |
parent | 156a195bf72bd366f91e03c170ad4b344797778a (diff) | |
download | ChibiOS-9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a.tar.gz ChibiOS-9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a.tar.bz2 ChibiOS-9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6250 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/test.h')
-rw-r--r-- | test/test.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test.h b/test/test.h index 136631d8f..1088d0517 100644 --- a/test/test.h +++ b/test/test.h @@ -84,10 +84,10 @@ extern "C" { void test_print(const char *msgp);
void test_println(const char *msgp);
void test_emit_token(char token);
- bool_t _test_fail(unsigned point);
- bool_t _test_assert(unsigned point, bool_t condition);
- bool_t _test_assert_sequence(unsigned point, char *expected);
- bool_t _test_assert_time_window(unsigned point, systime_t start, systime_t end);
+ bool _test_fail(unsigned point);
+ bool _test_assert(unsigned point, bool condition);
+ bool _test_assert_sequence(unsigned point, char *expected);
+ bool _test_assert_time_window(unsigned point, systime_t start, systime_t end);
void test_terminate_threads(void);
void test_wait_threads(void);
systime_t test_wait_tick(void);
@@ -165,7 +165,7 @@ extern "C" { extern thread_t *threads[MAX_THREADS];
extern union test_buffers test;
extern void * ROMCONST wa[];
-extern bool_t test_timer_done;
+extern bool test_timer_done;
#endif
#endif /* _TEST_H_ */
|