aboutsummaryrefslogtreecommitdiff
path: root/bench.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-28 17:38:51 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-28 17:38:51 +0200
commit9983ff0bd87663c95328a8bb098828c2a84fcc7b (patch)
treea0fd52af736d0d701a98a891ddcdef8f4fb17337 /bench.py
parentdcd05b6ebb31495d4a80d7979dc1cc339668efdc (diff)
downloadallocbench-9983ff0bd87663c95328a8bb098828c2a84fcc7b.tar.gz
allocbench-9983ff0bd87663c95328a8bb098828c2a84fcc7b.zip
make all default allocator target
Diffstat (limited to 'bench.py')
-rwxr-xr-xbench.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bench.py b/bench.py
index 6d08f2d..a34e53e 100755
--- a/bench.py
+++ b/bench.py
@@ -79,7 +79,8 @@ def main():
parser.add_argument("-v", "--verbose", help="more output", action='count')
parser.add_argument("-b", "--benchmarks", help="benchmarks to run", nargs='+')
parser.add_argument("-xb", "--exclude-benchmarks", help="explicitly excluded benchmarks", nargs='+')
- parser.add_argument("-a", "--allocators", help="allocators to test", type=str, nargs='+')
+ parser.add_argument("-a", "--allocators", help="allocators to test", type=str, nargs='+',
+ default=["all"])
parser.add_argument("-rd", "--resultdir", help="directory where all results go", type=str)
parser.add_argument("--license", help="print license info and exit", action='store_true')