#!/bin/bash

"$@"
if [ $? -eq 0 ]; then
  echo expected $1 to fail
  exit 1
fi
exit 0
