Skip to content
Snippets Groups Projects
Commit f4120c2c8d5f authored by Bob Ippolito's avatar Bob Ippolito
Browse files

remove non-working old benchmark scripts

git-svn-id: http://simplejson.googlecode.com/svn/trunk@124 a4795897-2c25-0410-b006-0d3caba88fa1
parent d62d580d7928
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
/usr/bin/env python -mtimeit -s 'from simplejson.tests.test_pass1 import test_parse' 'test_parse()'
/usr/bin/env python -c 'from simplejson.tests.test_pass1 import test_parse; import profile; profile.run("for i in xrange(100): test_parse()")'
#!/usr/bin/env python2.4
from pkg_resources import require
require('simplejson')
import profile
from simplejson.tests.test_pass1 import test_parse
profile.run("for x in xrange(10): test_parse()")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment