Remove setbuf from rtos tests.

pull/1854/head
Vincent Coubard 2016-06-07 17:50:00 +01:00
parent 55a35f9b9b
commit c58198e52b
8 changed files with 0 additions and 16 deletions

View File

@ -42,8 +42,6 @@ void led2_thread(void const *argument) {
}
int main() {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(15);
MBED_HOSTTEST_SELECT(wait_us_auto);
MBED_HOSTTEST_DESCRIPTION(Basic thread);

View File

@ -46,8 +46,6 @@ void queue_thread(void const *argument) {
}
int main (void) {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(20);
MBED_HOSTTEST_SELECT(default_auto);
MBED_HOSTTEST_DESCRIPTION(ISR (Queue));

View File

@ -52,8 +52,6 @@ void send_thread (void const *argument) {
}
int main (void) {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(20);
MBED_HOSTTEST_SELECT(default_auto);
MBED_HOSTTEST_DESCRIPTION(Mail messaging);

View File

@ -81,8 +81,6 @@ void test_thread(void const *args) {
}
int main() {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(20);
MBED_HOSTTEST_SELECT(default);
MBED_HOSTTEST_DESCRIPTION(Mutex resource lock);

View File

@ -54,8 +54,6 @@ void send_thread (void const *argument) {
}
int main (void) {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(20);
MBED_HOSTTEST_SELECT(default_auto);
MBED_HOSTTEST_DESCRIPTION(Queue messaging);

View File

@ -72,8 +72,6 @@ void test_thread(void const *delay) {
}
int main (void) {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(20);
MBED_HOSTTEST_SELECT(default_auto);
MBED_HOSTTEST_DESCRIPTION(Semaphore resource lock);

View File

@ -40,8 +40,6 @@ void led_thread(void const *argument) {
}
int main (void) {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(20);
MBED_HOSTTEST_SELECT(default_auto);
MBED_HOSTTEST_DESCRIPTION(Signals messaging);

View File

@ -23,8 +23,6 @@ void blink(void const *n) {
}
int main(void) {
setbuf(stdout, NULL);
MBED_HOSTTEST_TIMEOUT(15);
MBED_HOSTTEST_SELECT(wait_us_auto);
MBED_HOSTTEST_DESCRIPTION(Timer);