aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2016-04-15 10:04:10 +0200
committerMagnus Hagander <magnus@hagander.net>2016-04-15 10:04:10 +0200
commitcf086b1c2fa1e11c14a9fe5fea05553974a480ef (patch)
tree15c27e5c214e4db3558cdd4227e0bc0baed4e1d0
parent36c1c91604cee164c6487afb99508f7ff8737b96 (diff)
downloadpostgresql-cf086b1c2fa1e11c14a9fe5fea05553974a480ef.tar.gz
postgresql-cf086b1c2fa1e11c14a9fe5fea05553974a480ef.zip
Update helptext for vcregress.pl
This has clearly not been tracking the code changse for quite some time. Michael Paquier, problem spotted by Kyotaro HORIGUCHI
-rw-r--r--src/tools/msvc/vcregress.pl17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl
index 3d1454438d8..52c403791d9 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -547,7 +547,20 @@ sub InstallTemp
sub usage
{
print STDERR
- "Usage: vcregress.pl ",
-"<check|installcheck|plcheck|contribcheck|isolationcheck|ecpgcheck|upgradecheck> [schedule]\n";
+ "Usage: vcregress.pl <mode> [ <schedule> ]\n\n",
+ "Options for <mode>:\n",
+ " bincheck run tests of utilities in src/bin/\n",
+ " check deploy instance and run regression tests on it\n",
+ " contribcheck run tests of modules in contrib/\n",
+ " ecpgcheck run regression tests of ECPG\n",
+ " installcheck run regression tests on existing instance\n",
+ " isolationcheck run isolation tests\n",
+ " modulescheck run tests of modules in src/test/modules/\n",
+ " plcheck run tests of PL languages\n",
+ " recoverycheck run recovery test suite\n",
+ " upgradecheck run tests of pg_upgrade\n",
+ "\nOptions for <schedule>:\n",
+ " serial serial mode\n",
+ " parallel parallel mode\n";
exit(1);
}