#!/bin/sh

: ${vdsotest:=/opt/vdso/bin/vdsotest}

opts="$@"

for api in $($vdsotest list-apis)
do
    $vdsotest $opts $api bench
done
