Revision 9d2cca71cf54ddfebda26e247d82ae7b71d9e03c authored by Pranav Gokhale on 30 June 2018, 18:56:21 UTC, committed by Pranav Gokhale on 30 June 2018, 18:56:21 UTC
1 parent 720b0db
Raw File
TestRunner.sh
#!/bin/sh
#
# TestRunner.sh - Backward compatible utility for testing an individual file.

# Find where this script is.
Dir=$(dirname $(which $0))
AbsDir=$(cd $Dir; pwd)

# Find 'lit', assuming standard layout.
lit=$AbsDir/../../../utils/lit/lit.py

# Dispatch to lit.
$lit "$@"
back to top