mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
288 B
Bash
Executable file
10 lines
288 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source tools/common_funcs.sh
|
|
|
|
echo SANITIZING JSON...
|
|
${RESULTS_DIR}/sanitize_json ${OUTPUT_BASE}.out > ${OUTPUT_BASE}.out.sanitized
|
|
|
|
diff -up --strip-trailing-cr ${EXTRA_FILES}/${TEST_NAME}.json ${OUTPUT_BASE}.out.sanitized
|
|
|
|
rm_retry ${OUTPUT_BASE}.out{,.sanitized}
|