changeset 15057:ed1cfed14afa

remove the default -i, -wi and -f JMH options added by the jmh command
author Doug Simon <doug.simon@oracle.com>
date Thu, 10 Apr 2014 12:49:19 +0200
parents d971a9977892
children 895e9ecedfe8
files mx/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Thu Apr 10 11:28:19 2014 +0200
+++ b/mx/mx_graal.py	Thu Apr 10 12:49:19 2014 +0200
@@ -1355,11 +1355,7 @@
     benchmarks = [b for b in benchmarksAndJsons if not b.startswith('{')]
     jmhArgJsons = [b for b in benchmarksAndJsons if b.startswith('{')]
 
-    jmhArgs = {
-        '-v' : 'EXTRA' if mx._opts.verbose else 'NORMAL',
-        '-f' : '1',
-        '-i' : '10',
-        '-wi' : '10'}
+    jmhArgs = {'-v' : 'EXTRA' if mx._opts.verbose else 'NORMAL'}
 
     # e.g. '{"-wi" : 20}'
     for j in jmhArgJsons: