Attention is currently required from: fixeria.
1 comment:
File start-testsuite.sh:
How about adding a version check to ensure we are on at least version 9? I just had version 8 installed myself until a few days ago and didn't notice it since everything worked otherwise.
```
TTCN3_MIN_VERSION=9
for i in $(seq 0 $(($TTCN3_MIN_VERSION - 1))); do
if ttcn3_compiler -v 2>&1 | grep -q "Version: $i\."; then
echo "ERROR: eclipse-titan $TTCN3_MIN_VERSION or higher is needed!"
exit 1
fi
done
```
To view, visit change 40129. To unsubscribe, or for help writing mail filters, visit settings.