Navigation Menu

Skip to content

Commit

Permalink
test cmake: support
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 20, 2012
1 parent 0376b33 commit 201a368
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/run-sql-test.sh
Expand Up @@ -98,10 +98,14 @@ if ! test -d "${mroonga_wrapper_innodb_test_suite_dir}"; then
fi

if test -n "${plugins_dir}"; then
make -C ${top_dir} \
install-pluginLTLIBRARIES \
plugindir=${plugins_dir} > /dev/null || \
exit 1
if test -d "${top_dir}/.libs"; then
make -C ${top_dir} \
install-pluginLTLIBRARIES \
plugindir=${plugins_dir} > /dev/null || \
exit 1
else
cp "${top_dir}/ha_mroonga.so" "${plugins_dir}" || exit 1
fi
fi

(cd "$build_mysql_test_dir" && \
Expand Down

0 comments on commit 201a368

Please sign in to comment.