18 строки
381 B
Bash
Исполняемый файл
18 строки
381 B
Bash
Исполняемый файл
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
# Run a single LIT test file in a magical way that preserves colour output, to work around
|
|
# a known flaw in lit.
|
|
|
|
# Capture lit substitutions
|
|
HIPIFY=$1
|
|
IN_FILE=$2
|
|
TMP_FILE=$3
|
|
shift 3
|
|
|
|
# Remaining args are the ones to forward to clang proper.
|
|
|
|
$HIPIFY -o=$TMP_FILE $IN_FILE -- $@ && cat $TMP_FILE | sed -Ee 's|//.+|// |g' | FileCheck $IN_FILE
|
|
|