summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()")