23 lines
386 B
Bash
Executable File
23 lines
386 B
Bash
Executable File
#! /bin/sh
|
|
# Set the testing environment.
|
|
|
|
PACKAGE=@PACKAGE@
|
|
VERSION=@VERSION@
|
|
top_srcdir=@abs_top_srcdir@
|
|
srcdir=@abs_srcdir@
|
|
PATH=@abs_builddir@:@abs_top_builddir@/src:$top_srcdir:$srcdir:$PATH
|
|
|
|
export LANGUAGE
|
|
LANGUAGE=
|
|
export LC_ALL
|
|
LC_ALL="C"
|
|
|
|
skiptest() {
|
|
exit 77
|
|
}
|
|
|
|
star_prereq() {
|
|
test -z "$STAR_TESTSCRIPTS" && skiptest
|
|
test -r "$STAR_TESTSCRIPTS/$1" || skiptest
|
|
}
|