2015-01-12 10:32:20 +01:00
|
|
|
Description: remove testing with MySQL and PostgreSQL
|
|
|
|
Without this patch a test would be initiated after building ejabberd that
|
|
|
|
requires specially configured instances of MySQL and PostgreSQL to be up
|
|
|
|
and running.
|
|
|
|
Author: Philipp Huebner <debalance@debian.org>
|
|
|
|
|
|
|
|
Index: ejabberd/Makefile.in
|
|
|
|
===================================================================
|
2015-07-08 11:54:14 +02:00
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
|
|
index ffd1d30..835d611 100644
|
|
|
|
--- a/Makefile.in
|
|
|
|
+++ b/Makefile.in
|
|
|
|
@@ -306,14 +306,8 @@ dialyzer: erlang_plt deps_plt ejabberd_plt
|
2015-01-12 10:32:20 +01:00
|
|
|
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
|
|
|
|
|
|
|
|
test:
|
|
|
|
- @echo "************************** NOTICE ***************************************"
|
|
|
|
- @cat test/README
|
|
|
|
- @echo "*************************************************************************"
|
2015-07-08 11:54:14 +02:00
|
|
|
- @cd priv && ln -sf ../sql
|
2015-01-12 10:32:20 +01:00
|
|
|
- $(REBAR) skip_deps=true ct
|
|
|
|
|
2015-07-08 11:54:14 +02:00
|
|
|
quicktest:
|
|
|
|
- $(REBAR) skip_deps=true ct suites=elixir
|
|
|
|
|
|
|
|
.PHONY: src edoc dialyzer Makefile TAGS clean clean-rel distclean rel \
|
2015-01-12 10:32:20 +01:00
|
|
|
install uninstall uninstall-binary uninstall-all translations deps test spec \
|