blob: 98431748770512fa959eac368d778537d52cef56 [file] [log] [blame]
Renato Golin94cc1042016-04-26 11:02:23 +01001#!/usr/bin/env bash
2
3# Helper script for running a single LIT test inside the build tree.
4
Diana Picus72189fd2016-05-23 19:32:46 +03005. llvm-common
6
7safe_run verify_env
8
Renato Golin94cc1042016-04-26 11:02:23 +01009if [[ $1 = '' ]]; then
10 echo "Syntax: $0 test-dir"
11 exit -1
12fi
13DIR=$1
14
15$LLVM_SRC/utils/lit/lit.py \
16 --param build_mode=. \
17 -sv \
18 --param llvm_site_config=$LLVM_BLD/test/lit.site.cfg \
19 --param llvm_unit_site_config=$LLVM_BLD/test/Unit/lit.site.cfg \
20 $DIR