aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 7361f978..d5489dd6 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2882,6 +2882,7 @@ at function.:blag
src = r'''
#include <stdio.h>
#include <string.h>
+ #include <stdlib.h>
int main () {
#define CHECK(str) \
@@ -2896,6 +2897,8 @@ at function.:blag
CHECK("en-r");
CHECK("en 3");
+ printf("%f, %f\n", atof("1.234567"), atof("cheez"));
+
return 0;
}
'''