summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2008-09-26 18:19:22 +0000
committerBob Ippolito <bob@redivi.com>2008-09-26 18:19:22 +0000
commitc509ef1de419095cc5f11f6eb2093e3a52af063d (patch)
tree1d8b076255dc52fde14ed97b3ce55e073fc050d8 /scripts
parent8f92b0c06fcc4f127f2a7001e7c5f21e36ca3673 (diff)
downloadsimplejson-c509ef1de419095cc5f11f6eb2093e3a52af063d.tar.gz
remove non-working old benchmark scripts
git-svn-id: http://simplejson.googlecode.com/svn/trunk@124 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bench.sh3
-rwxr-xr-xscripts/prof.py9
2 files changed, 0 insertions, 12 deletions
diff --git a/scripts/bench.sh b/scripts/bench.sh
deleted file mode 100755
index de41c3e..0000000
--- a/scripts/bench.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/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()")'
diff --git a/scripts/prof.py b/scripts/prof.py
deleted file mode 100755
index 45c7a85..0000000
--- a/scripts/prof.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/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()")