mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
206 B
Bash
Executable file
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}"
|