[pypy-commit] lang-smalltalk default: added the StackVM, without automatically looking for new versions

lwassermann noreply at buildbot.pypy.org
Tue Apr 30 16:44:13 CEST 2013


Author: Lars Wassermann <lars.wassermann at gmail.com>
Branch: 
Changeset: r358:813b6f270b6c
Date: 2013-04-30 16:42 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/813b6f270b6c/

Log:	added the StackVM, without automatically looking for new versions

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -194,6 +194,12 @@
             "coglinux/squeak",
             cogurl,
             callback=update_image
+        ),
+        Executable(
+            "stackvm",
+            "stackvm/bin/squeak",
+            "http://squeakvm.org/unix/release/Squeak-4.10.2.2614-linux_i386.tar.gz",
+            callback=(lambda x: subprocess.Popen(["mv", "Squeak-4.10.2.2614-linux_i386", "stackvm"]).wait())
         )
     ],
     arguments=['-vm-display-X11', '-headless', "images/%s.image" % SqueakImage, '../benchmarks.st'],


More information about the pypy-commit mailing list