aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-30 19:46:57 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-03-30 19:46:57 -0700
commitb9d076fda6b53596bc893ca196c578c8f32e793c (patch)
tree344fe2ba98a03af1b5a9549ccc4b6c9e241ebb6c /tests/runner.py
parent26be0690260a71d56b6c51a52092d4cbbd736fb6 (diff)
headers fix; fixes #1013
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index cc53ae42..906375a5 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -1635,7 +1635,11 @@ Succeeded!
def test_floatvars(self):
src = '''
#include <stdio.h>
- #include <math.h>
+
+ // headers test, see issue #1013
+ #include<cfloat>
+ #include<cmath>
+
int main(int argc, char **argv)
{
float x = 1.234, y = 3.5, q = 0.00000001;