blob: 6bad80da2db912bfbc1b1f8cc61180b5dfec7fee (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
set -o monitor
cp position.blank position.txt
touch constraints.log
rm constraints.log
#Assume build without TP debug logging enabled
linuxcnc $1 > test.log &
python run_all_tests.py
fg
|