Mercurial > hg > CbC > CbC_llvm
annotate clang/test/TestRunner.sh @ 180:680fa57a2f20
fix compile errors.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 30 May 2020 17:44:06 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 #!/bin/sh |
2 # | |
3 # TestRunner.sh - Backward compatible utility for testing an individual file. | |
4 | |
5 # Find where this script is. | |
6 Dir=$(dirname $(which $0)) | |
7 AbsDir=$(cd $Dir; pwd) | |
8 | |
9 # Find 'lit', assuming standard layout. | |
10 lit=$AbsDir/../../../utils/lit/lit.py | |
11 | |
12 # Dispatch to lit. | |
13 $lit "$@" |