From 5d7ade676d6b263536c5bcb4634388b60c7b306d Mon Sep 17 00:00:00 2001
From: Iustin Pop <iusty@k1024.org>
Date: Sun, 12 Feb 2012 14:22:27 +0100
Subject: [PATCH] Also run pypy with the -S option

---
 Makefile           | 2 +-
 python/null.pypy-s | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)
 create mode 100755 python/null.pypy-s

diff --git a/Makefile b/Makefile
index 08d605f..75fdbfe 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ SCRIPTS = \
 	python/null.py26 python/null.py26-s \
 	python/null.py27 python/null.py27-s python/null.py27-o \
 	python/null.py32 python/null.py32-s python/null.py32-o \
-	python/null.pypy
+	python/null.pypy python/null.pypy-s
 
 #METRICS = \
 #	cycles,instructions,branches,branch-misses \
diff --git a/python/null.pypy-s b/python/null.pypy-s
new file mode 100755
index 0000000..0e40cb2
--- /dev/null
+++ b/python/null.pypy-s
@@ -0,0 +1,5 @@
+#!/usr/bin/pypy -S
+
+import sys
+
+sys.exit(0)
-- 
2.39.5