diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-30 19:46:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-30 19:46:57 -0700 |
commit | b9d076fda6b53596bc893ca196c578c8f32e793c (patch) | |
tree | 344fe2ba98a03af1b5a9549ccc4b6c9e241ebb6c /tests/runner.py | |
parent | 26be0690260a71d56b6c51a52092d4cbbd736fb6 (diff) |
headers fix; fixes #1013
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 6 |
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; |