Skip to content

Commit

Permalink
math: increase timeout for math/atest-*.c
Browse files Browse the repository at this point in the history
These tests run in the 2-5 second range on tilegx, so just bump
up the timeout to 10 seconds generically.
  • Loading branch information
Chris Metcalf committed Dec 19, 2014
1 parent afd176d commit 4ef91cd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2014-12-19 Chris Metcalf <cmetcalf@ezchip.com>

* math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec.
* math/atest-exp2.c (TIMEOUT): Likewise.
* math/atest-sincos.c (TIMEOUT): Likewise.

2014-12-19 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace
Expand Down
1 change: 1 addition & 0 deletions math/atest-exp.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,5 +191,6 @@ do_test (void)
return failures == 0 ? 0 : 1;
}

#define TIMEOUT 10
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"
1 change: 1 addition & 0 deletions math/atest-exp2.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,5 +228,6 @@ do_test (void)
return failures == 0 ? 0 : 1;
}

#define TIMEOUT 10
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"
1 change: 1 addition & 0 deletions math/atest-sincos.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,5 +278,6 @@ do_test (void)
return (sin_failures == 0 && cos_failures == 0) ? 0 : 1;
}

#define TIMEOUT 10
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"

0 comments on commit 4ef91cd

Please sign in to comment.