[pypy-commit] pypy vmprof-0.4.10: apparently, gc='minimark' is not needed for this test. Not sure why it was written like that

antocuni pypy.commits at gmail.com
Tue Nov 7 19:40:17 EST 2017


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: vmprof-0.4.10
Changeset: r92962:5cc71a3d3d71
Date: 2017-11-07 12:07 +0100
http://bitbucket.org/pypy/pypy/changeset/5cc71a3d3d71/

Log:	apparently, gc='minimark' is not needed for this test. Not sure why
	it was written like that

diff --git a/rpython/rlib/rvmprof/test/test_rvmprof.py b/rpython/rlib/rvmprof/test/test_rvmprof.py
--- a/rpython/rlib/rvmprof/test/test_rvmprof.py
+++ b/rpython/rlib/rvmprof/test/test_rvmprof.py
@@ -131,7 +131,7 @@
 
     assert f() == 0
     assert os.path.exists(tmpfilename)
-    fn = compile(f, [], gcpolicy="minimark")
+    fn = compile(f, [])
     assert fn() == 0
     try:
         check_profile(tmpfilename)


More information about the pypy-commit mailing list