File: test-command-line

package info (click to toggle)
openmotor 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,228 kB
  • sloc: python: 4,937; sh: 28; makefile: 21
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