File: global-test-vars.sh.in

package info (click to toggle)
libcroco 0.6.2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,212 kB
  • ctags: 1,584
  • sloc: ansic: 20,864; sh: 9,582; makefile: 213
file content (12 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
TEST_OUT_DIR=./tests
TEST_SOURCE_DIR=@srcdir@/tests
TEST_INPUTS_DIR="$TEST_SOURCE_DIR"/test-inputs
CSSLINT=./csslint/.libs/csslint-@LIBCROCO_MAJOR_VERSION@.@LIBCROCO_MINOR_VERSION@
if ! test -x $CSSLINT ; then
    echo "Error: Could not find an executable csslint. I was looking for $CSSLINT" >&2
    exit 1
fi

if ! test x"$VALGRIND" = x ; then
    CSSLINT="$VALGRIND $CSSLINT"
fi