Commit 119d0f4c authored by vasil's avatar vasil

branches/zip:

Apply any necessary patches to the mysql tree at the end of setup.sh
This step was previously done manually (and sometimes forgotten).
parent bc707482
...@@ -35,3 +35,13 @@ cd ../r ...@@ -35,3 +35,13 @@ cd ../r
ln -sf ../$TARGETDIR/mysql-test/*.result . ln -sf ../$TARGETDIR/mysql-test/*.result .
cd ../include cd ../include
ln -sf ../$TARGETDIR/mysql-test/*.inc . ln -sf ../$TARGETDIR/mysql-test/*.inc .
# Apply any patches that are needed to make the mysql-test suite successful.
# These patches are usually needed because of deviations of behavior between
# the stock InnoDB and the InnoDB Plugin.
cd ../..
for patch in storage/innobase/mysql-test/patches/*.diff ; do
if [ "${patch}" != "storage/innobase/mysql-test/patches/*.diff" ] ; then
patch -p0 < ${patch}
fi
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment