summaryrefslogtreecommitdiff
path: root/Lib/test/pystone.py
diff options
context:
space:
mode:
authorAlex Martelli <aleaxit@gmail.com>2004-01-02 17:11:54 +0000
committerAlex Martelli <aleaxit@gmail.com>2004-01-02 17:11:54 +0000
commitff52988e798caad9a9164e33a1d1934cf5c63447 (patch)
treeed36371f18df092146f80f4fc01870d38b2ec46c /Lib/test/pystone.py
parent41ec07f5208e58c02c1d430cef90296a43f9bdec (diff)
downloadcpython-ff52988e798caad9a9164e33a1d1934cf5c63447.tar.gz
The script now takes an optional command-line argument to specify how many
loops to run (default remains 50,000 if no argument is specified).
Diffstat (limited to 'Lib/test/pystone.py')
-rwxr-xr-xLib/test/pystone.py23
1 files changed, 19 insertions, 4 deletions
diff --git a/Lib/test/pystone.py b/Lib/test/pystone.py
index 931a307926..168c399d02 100755
--- a/Lib/test/pystone.py
+++ b/Lib/test/pystone.py
@@ -57,10 +57,10 @@ class Record:
TRUE = 1
FALSE = 0
-def main():
- benchtime, stones = pystones()
+def main(loops=LOOPS):
+ benchtime, stones = pystones(loops)
print "Pystone(%s) time for %d passes = %g" % \
- (__version__, LOOPS, benchtime)
+ (__version__, loops, benchtime)
print "This machine benchmarks at %g pystones/second" % stones
@@ -249,4 +249,19 @@ def Func3(EnumParIn):
return FALSE
if __name__ == '__main__':
- main()
+ import sys
+ def error(msg):
+ print >>sys.stderr, msg,
+ print >>sys.stderr, "usage: %s [number_of_loops]" % sys.argv[0]
+ sys.exit(100)
+ nargs = len(sys.argv) - 1
+ if nargs > 1:
+ error("%d arguments are too many;" % nargs)
+ elif nargs == 1:
+ try: loops = int(sys.argv[1])
+ except ValueError:
+ error("Invalid argument %r;" % sys.argv[1])
+ else:
+ loops = LOOPS
+ main(loops)
+