diff options
Diffstat (limited to 'tests/runner.py')
-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> |