#!/bin/sh

set -e

at_exit() {
    echo "info: test exiting"
}
trap at_exit INT TERM EXIT

testfile="test/data/real/o3100/motor.ric"

set -x

QT_QPA_PLATFORM=minimal DISPLAY= openmotor -h "$testfile"

exit 0
