mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
14 lines
152 B
Bash
14 lines
152 B
Bash
|
#! /bin/sh
|
||
|
#
|
||
|
srcdir="$1"
|
||
|
pcregrep="$2"
|
||
|
pcretest="$3"
|
||
|
cd "$4"
|
||
|
shift
|
||
|
shift
|
||
|
shift
|
||
|
shift
|
||
|
. "$srcdir"/RunGrepTest
|
||
|
if test "$?" != "0"; then exit 1; fi
|
||
|
# End
|