Author: Wim Lavrijsen <[email protected]>
Branch: reflex-support
Changeset: r55938:1fe4b1ebc43e
Date: 2012-07-05 15:58 -0700
http://bitbucket.org/pypy/pypy/changeset/1fe4b1ebc43e/

Log:    more test of CINT interpreted classes

diff --git a/pypy/module/cppyy/test/test_cint.py 
b/pypy/module/cppyy/test/test_cint.py
--- a/pypy/module/cppyy/test/test_cint.py
+++ b/pypy/module/cppyy/test/test_cint.py
@@ -22,8 +22,10 @@
         assert cppyy.gbl.gROOT
         assert cppyy.gbl.gApplication
         assert cppyy.gbl.gSystem
-        assert cppyy.gbl.TInterpreter.Instance()
-        assert cppyy.gbl.TDirectory.CurrentDirectory()
+        assert cppyy.gbl.TInterpreter.Instance()           # compiled
+        assert cppyy.gbl.TInterpreter                      # interpreted
+        assert cppyy.gbl.TDirectory.CurrentDirectory()     # compiled
+        assert cppyy.gbl.TDirectory                        # interpreted
 
     def test02_write_access_to_globals(self):
         """Test overwritability of ROOT globals"""
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to