1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/float/main.c
Kaspar Schleiser 37d2e70aa6 tests/float: reduce iterations to 1000
The linked bug report [1] says "2 out of 5 computations fail", so there
should be no need to wait tens of seconds.

[1] https://sourceware.org/legacy-ml/newlib/2010/msg00149.html
2020-07-29 12:26:43 +02:00

54 lines
1013 B
C

/*
* Copyright (C) 2013 INRIA
* 2017 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Float test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*
* @}
*/
#include <stdio.h>
#include <math.h>
#include "board.h"
/* as default we run the test 1k times */
#ifndef TEST_ITER
#define TEST_ITER (1000UL)
#endif
#define STEP (0.1)
int main(void)
{
double x = 1234567.0 / 1024.0;
puts("Testing floating point arithmetic...\n");
for (unsigned long i = 0; i < TEST_ITER; i++) {
x += STEP;
double z = (x - floor(x));
if (z >= 1.0) {
puts("[FAILED]");
return 1;
}
}
puts("[SUCCESS]");
return 0;
}