dmd/compiler/test/runnable/test18141.sh
2022-07-09 18:53:07 +02:00

10 lines
206 B
Bash
Executable file

#!/usr/bin/env bash
if [ "${OS}" == "windows" ]; then
expected="Windows"
else
expected="Posix"
fi
out=$(echo "void main(){}" | "${DMD}" -v -o- -)
echo "$out" | grep "predefs" | grep "${expected}"