[pypy-commit] pypy reflex-support: more test of CINT interpreted classes

wlav noreply at buildbot.pypy.org
Fri Jul 6 16:40:05 CEST 2012


Author: Wim Lavrijsen <WLavrijsen at lbl.gov>
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"""


More information about the pypy-commit mailing list