diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-03-30 20:15:32 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-03-30 20:15:32 -0700 |
commit | 3b7d149de6bb40c9714f9e863485d613d2135b5c (patch) | |
tree | 99ac4e281aa31092bfb71d849f9a7ffcfbd4d2b5 /tests | |
parent | fa8b668639e9c9656a6efa0c5ff24d33e33a9f5a (diff) | |
parent | d241868b63fcd306f3ff1007b57363391b724a46 (diff) |
Merge pull request #328 from ehsan/ogre_upstream
Upstream the work I did for porting Ogre
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 8a4ee811..27142eaf 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -1698,6 +1698,16 @@ m_divisor is 1091269979 ''' self.do_run(src, '*51,87,78,550,100,78,550*') + def test_isdigit_l(self): + src = ''' + #include <iostream> + int main() { + using namespace std; + use_facet<num_put<char> >(cout.getloc()).put(cout, cout, '0', 3.14159265); + } + ''' + self.do_run(src, '3.14159') + def test_polymorph(self): src = ''' #include <stdio.h> |