llvm-capstone/clang/test/TestRunner.sh
Daniel Dunbar 22d5360ed0 Switch TestRunner.sh to just use 'lit'.
- Does people use this?

llvm-svn: 82406
2009-09-20 22:00:23 +00:00

14 lines
279 B
Bash
Executable File

#!/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 "$@"