Author: Wim Lavrijsen <[email protected]>
Branch: reflex-support
Changeset: r71228:dc53babe2e05
Date: 2014-05-03 07:45 -0700
http://bitbucket.org/pypy/pypy/changeset/dc53babe2e05/

Log:    revert the blocking of these tests

diff --git a/pypy/module/cppyy/test/test_stltypes.py 
b/pypy/module/cppyy/test/test_stltypes.py
--- a/pypy/module/cppyy/test/test_stltypes.py
+++ b/pypy/module/cppyy/test/test_stltypes.py
@@ -211,8 +211,6 @@
     def test01_string_argument_passing(self):
         """Test mapping of python strings and std::string"""
 
-        return
-
         import cppyy
         std = cppyy.gbl.std
         stringy_class = cppyy.gbl.stringy_class
@@ -244,8 +242,6 @@
     def test02_string_data_access(self):
         """Test access to std::string object data members"""
 
-        return
-
         import cppyy
         std = cppyy.gbl.std
         stringy_class = cppyy.gbl.stringy_class
@@ -265,14 +261,10 @@
     def test03_string_with_null_character(self):
         """Test that strings with NULL do not get truncated"""
 
-        return
-
         import cppyy
         std = cppyy.gbl.std
         stringy_class = cppyy.gbl.stringy_class
 
-        return
-
         t0 = "aap\0noot"
         self.assertEqual(t0, "aap\0noot")
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to