#!/bin/sh

if [ $# != 1 ]; then
    echo "Usage: $0 bin_name"
    exit 1
fi

echo -n $1
time ./$1 > /dev/null < test_data/short_lines.txt
time ./$1 > /dev/null < test_data/long_lines.txt
