#!/bin/sh -e

cd tests
python3 bootstrap.py
. env-test/bin/activate

TESTS="redirect remap"

for what in $TESTS; do
    autest -D gold_tests --ats-bin /usr/bin/ --filter $what
done
