#!/bin/bash set -e if [ $# -ne 0 ]; then echo "Usage ./test" exit 1 fi python -c 'import hysop; print hysop' python './hysop/operator/test_transpose.py' exit 0