From d6b756868dbb84944718a8ea62b14e27fddb6c72 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 12 Feb 2012 14:13:49 +0100 Subject: [PATCH] Add two python optimised runs even though they are identical to the non-optimised ones. --- Makefile | 4 ++-- python/null.py27-o | 5 +++++ python/null.py32-o | 5 +++++ 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100755 python/null.py27-o create mode 100755 python/null.py32-o diff --git a/Makefile b/Makefile index 742fca7..98bc837 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,8 @@ SCRIPTS = \ php/null.php php/null.php-n \ tcl/null.tcl84 tcl/null.tcl85 tcl/null.tcl86 \ python/null.py26 python/null.py26-s \ - python/null.py27 python/null.py27-s \ - python/null.py32 python/null.py32-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 #METRICS = \ diff --git a/python/null.py27-o b/python/null.py27-o new file mode 100755 index 0000000..77548af --- /dev/null +++ b/python/null.py27-o @@ -0,0 +1,5 @@ +#!/usr/bin/python2.7 -O + +import sys + +sys.exit(0) diff --git a/python/null.py32-o b/python/null.py32-o new file mode 100755 index 0000000..bf38b2f --- /dev/null +++ b/python/null.py32-o @@ -0,0 +1,5 @@ +#!/usr/bin/python3.2 -O + +import sys + +sys.exit(0) -- 2.39.5