diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/kerberos/t/001_auth.pl | 2 | ||||
-rw-r--r-- | src/test/ldap/LdapServer.pm | 4 | ||||
-rw-r--r-- | src/test/modules/ldap_password_func/meson.build | 2 | ||||
-rw-r--r-- | src/test/perl/PostgreSQL/Test/BackgroundPsql.pm | 4 | ||||
-rw-r--r-- | src/test/regress/pg_regress.c | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/test/kerberos/t/001_auth.pl b/src/test/kerberos/t/001_auth.pl index bf12752529a..a5b79a1982e 100644 --- a/src/test/kerberos/t/001_auth.pl +++ b/src/test/kerberos/t/001_auth.pl @@ -413,7 +413,7 @@ test_query( $node->connect_ok( $node->connstr('postgres') . " user=test1 host=$host hostaddr=$hostaddr gssencmode=disable require_auth=gss", - "GSS authentication requested, works with non-encyrpted GSS"); + "GSS authentication requested, works with non-encrypted GSS"); $node->connect_ok( $node->connstr('postgres') . " user=test1 host=$host hostaddr=$hostaddr gssencmode=require require_auth=gss", diff --git a/src/test/ldap/LdapServer.pm b/src/test/ldap/LdapServer.pm index 8c69f660f5c..3cc05b82550 100644 --- a/src/test/ldap/LdapServer.pm +++ b/src/test/ldap/LdapServer.pm @@ -19,7 +19,7 @@ LdapServer - class for an LDAP server for testing pg_hba.conf authentication use LdapServer; - # have we found openldap binaies suitable for setting up a server? + # have we found openldap binaries suitable for setting up a server? my $ldap_binaries_found = $LdapServer::setup; # create a server with the given root password and auth type @@ -254,7 +254,7 @@ sub _ldapenv =over -=item ldap_add(filename) +=item ldapadd_file(filename) filename is the path to a file containing LDIF data which is added to the LDAP server. diff --git a/src/test/modules/ldap_password_func/meson.build b/src/test/modules/ldap_password_func/meson.build index 653a5e94792..63dc852bf3c 100644 --- a/src/test/modules/ldap_password_func/meson.build +++ b/src/test/modules/ldap_password_func/meson.build @@ -9,7 +9,7 @@ ldap_password_func_sources = files( if host_system == 'windows' ldap_password_func_sources += rc_lib_gen.process(win32ver_rc, extra_args: [ '--NAME', 'ldap_password_func', - '--FILEDESC', 'set hook to mutate ldapbindpassw',]) + '--FILEDESC', 'set hook to mutate ldapbindpasswd',]) endif ldap_password_func = shared_module('ldap_password_func', diff --git a/src/test/perl/PostgreSQL/Test/BackgroundPsql.pm b/src/test/perl/PostgreSQL/Test/BackgroundPsql.pm index d767e284a29..a9c102949f8 100644 --- a/src/test/perl/PostgreSQL/Test/BackgroundPsql.pm +++ b/src/test/perl/PostgreSQL/Test/BackgroundPsql.pm @@ -68,7 +68,7 @@ use Test::More; =over -=item PostgreSQL::Test::BackroundPsql->new(interactive, @params) +=item PostgreSQL::Test::BackgroundPsql->new(interactive, @params) Builds a new object of class C<PostgreSQL::Test::BackgroundPsql> for either an interactive or background session and starts it. If C<interactive> is @@ -201,7 +201,7 @@ sub query $self->{timeout}->start() if (defined($self->{query_timer_restart})); # Feed the query to psql's stdin, followed by \n (so psql processes the - # line), by a ; (so that psql issues the query, if it doesnt't include a ; + # line), by a ; (so that psql issues the query, if it doesn't include a ; # itself), and a separator echoed with \echo, that we can wait on. my $banner = "background_psql: QUERY_SEPARATOR"; $self->{stdin} .= "$query\n;\n\\echo $banner\n"; diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index f7bcb30ca4f..48008fa8c3f 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -276,7 +276,7 @@ test_status_print(bool ok, const char *testname, double runtime, bool parallel) * Testnumbers are padded to 5 characters to ensure that testnames align * vertically (assuming at most 9999 tests). Testnames are prefixed with * a leading character to indicate being run in parallel or not. A leading - * '+' indicates a parellel test, '-' indicates a single test. + * '+' indicates a parallel test, '-' indicates a single test. */ emit_tap_output(TEST_STATUS, "%sok %-5i%*s %c %-*s %8.0f ms", (ok ? "" : "not "), |