aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-16 08:41:23 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-16 08:41:23 -0800
commit99c9e8fc31869fbc8135d863cfdf242dfff149a8 (patch)
tree183f643e2166eed56a1b99478526099fa453d896 /tests
parent426ae60955f6e0c737a0a8898293e764c59b3f4c (diff)
parent8b14e998c1f2a27dcd1d0b67af85f1637612aa5b (diff)
Merge branch 'master' into emccbydefault
Diffstat (limited to 'tests')
-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;
}
'''