Don't share fonts and cache dir for testing
There seems a race condition on CI. so create an unique directory to avoid colision.
This commit is contained in:
parent
0950f248e0
commit
34791c32f1
|
@ -28,8 +28,9 @@ esac
|
|||
TESTDIR=${srcdir-"$MyPWD"}
|
||||
BUILDTESTDIR=${builddir-"$MyPWD"}
|
||||
|
||||
FONTDIR="$MyPWD"/fonts
|
||||
CACHEDIR="$MyPWD"/cache.dir
|
||||
BASEDIR=`mktemp -d --tmpdir fontconfig.XXXXXXXX`
|
||||
FONTDIR="$BASEDIR"/fonts
|
||||
CACHEDIR="$BASEDIR"/cache.dir
|
||||
EXPECTED=${EXPECTED-"out.expected"}
|
||||
LOG_COMPILER=${LOG_COMPILER-"$TESTDIR/wrapper-script.sh"}
|
||||
|
||||
|
@ -226,6 +227,7 @@ dotest "sysroot option"
|
|||
prep
|
||||
mkdir -p $MyPWD/sysroot/$FONTDIR
|
||||
mkdir -p $MyPWD/sysroot/$CACHEDIR
|
||||
mkdir -p $MyPWD/sysroot/$MyPWD
|
||||
cp $FONT1 $MyPWD/sysroot/$FONTDIR
|
||||
cp $MyPWD/fonts.conf $MyPWD/sysroot/$MyPWD/fonts.conf
|
||||
$FCCACHE -y $MyPWD/sysroot
|
||||
|
@ -245,4 +247,4 @@ rm -rf $MyPWD/sysroot
|
|||
|
||||
fi
|
||||
|
||||
rm -rf $FONTDIR $CACHEFILE $CACHEDIR $FONTCONFIG_FILE out
|
||||
rm -rf $FONTDIR $CACHEFILE $CACHEDIR $BASEDIR $FONTCONFIG_FILE out
|
||||
|
|
Loading…
Reference in New Issue