diff --git a/tests/float/main.c b/tests/float/main.c index 55cd4d238f..47a7bc4b81 100644 --- a/tests/float/main.c +++ b/tests/float/main.c @@ -25,9 +25,9 @@ #include "board.h" -/* as default we run the test 100k times */ +/* as default we run the test 1k times */ #ifndef TEST_ITER -#define TEST_ITER (100000UL) +#define TEST_ITER (1000UL) #endif #define STEP (0.1) diff --git a/tests/float/tests/01-run.py b/tests/float/tests/01-run.py index a20a7b711a..3fcec4eb93 100755 --- a/tests/float/tests/01-run.py +++ b/tests/float/tests/01-run.py @@ -9,13 +9,10 @@ import sys from testrunner import run -# It takes 35 seconds on msp430, so add some margin -TIMEOUT = 45 - def testfunc(child): child.expect_exact("Testing floating point arithmetic...") - child.expect_exact("[SUCCESS]", timeout=TIMEOUT) + child.expect_exact("[SUCCESS]") if __name__ == "__main__":