Hi, all! <br><br>Is there any special reason for the Makefile regression-reset-db task use no password, in order to create the test database structure? If no, I've changed it in order to ask for the database admin. password. The patch follows:
<br><br>---- patch start ----<br>--- <a href="http://Makefile.in">Makefile.in</a> (revisão 5352)<br>+++ <a href="http://Makefile.in">Makefile.in</a> (cópia de trabalho)<br>@@ -365,8 +365,8 @@<br> # {{{ database-installation
<br> <br> regression-reset-db:<br>- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action drop --dba $(DB_DBA) --dba-password '' --force<br>- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action init --dba $(DB_DBA) --dba-password ''
<br>+ $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action drop --dba $(DB_DBA) --prompt-for-dba-password --force<br>+ $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action init --dba $(DB_DBA) --prompt-for-dba-password
<br> <br> initdb :: initialize-database<br> <br><br>---- patch end ----<br><br>Thanks,<br><br>Bubble<br>