Software /
code /
prosody
Annotate
tests/run_tests.bat @ 3180:99be525bcfb4
Rename mod_defaultauth -> mod_auth_internal, mod_hashpassauth -> mod_auth_internal_hashed, and the providers to internal and internal_hashed respectively. Also no longer auto-load defaultauth, but instead auto-load the plugin selected for each host at startup based on the provider name.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 04 Jun 2010 14:33:36 +0100 |
parent | 809:28d6515f5b7b |
rev | line source |
---|---|
809
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
1 @echo off |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
2 |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
3 set oldpath=%path% |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
4 set path=%path%;..;..\lualibs |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
5 |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
6 del reports\*.report |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
7 lua test.lua %* |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
8 |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
9 set path=%oldpath% |
28d6515f5b7b
Added tests/run_tests.bat for running tests on Windows
Waqas Hussain <waqas20@gmail.com>
parents:
diff
changeset
|
10 set oldpath= |