File: test-command-line

package info (click to toggle)
openmotor 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,812 kB
  • sloc: python: 5,439; sh: 28; makefile: 23
file content (16 lines) | stat: -rwxr-xr-x 208 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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