summaryrefslogtreecommitdiff
path: root/src/test/authentication/README
AgeCommit message (Collapse)Author
2021-10-31Doc: improve README files associated with TAP tests.Tom Lane
Rearrange src/test/perl/README so that the first section is more clearly "how to run these tests", and the rest "how to write new tests". Add some basic info there about debugging test failures. Then, add cross-refs to that READNE from other READMEs that describe how to run TAP tests. Per suggestion from Kevin Burke, though this is not his original patch. Discussion: https://postgr.es/m/CAKcy5eiSbwiQnmCfnOnDCVC7B8fYyev3E=6pvvECP9pLE-Fcuw@mail.gmail.com
2018-06-19Clarify the README files for the various separate TAP-based test suites.Tom Lane
Explain the difference between "make check" and "make installcheck". Mention the need for --enable-tap-tests (only some of these did so before). Standardize their wording about how to run the tests.
2018-01-23Add installcheck support to more test suitesPeter Eisentraut
Several of the test suites under src/test/ were missing an installcheck target.
2017-03-17Add TAP tests for password-based authentication methods.Heikki Linnakangas
Tests all combinations of users with MD5, plaintext and SCRAM verifiers stored in pg_authid, with plain 'password', 'md5' and 'scram' authentication methods. Michael Paquier