mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
219 B
Bash
Executable file
9 lines
219 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
output_file=${OUTPUT_BASE}.log
|
|
|
|
echo 'import std.stdio; void main() { writeln("Success"); }' | \
|
|
$DMD -m${MODEL} -run - > ${output_file}
|
|
grep -q 'Success' ${output_file}
|
|
|
|
rm_retry "${output_file}"
|