Specifying a dbname should override the default database, not add to it.
authorMagnus Hagander
Tue, 12 Jun 2007 13:54:58 +0000 (13:54 +0000)
committerMagnus Hagander
Tue, 12 Jun 2007 13:54:58 +0000 (13:54 +0000)
Fixes buildfarm failures on contribcheck.

src/test/regress/pg_regress.c

index 8794e93a51b47a3b615d44981cce9b2fd3da7ad8..3f067428af7a9a8834b809b106e64cd17b73b67d 100644 (file)
@@ -11,7 +11,7 @@
  * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.34 2007/06/12 13:26:45 mha Exp $
+ * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.35 2007/06/12 13:54:58 mha Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1794,6 +1794,10 @@ regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc
                printf("pg_regress (PostgreSQL %s)\n", PG_VERSION);
                exit_nicely(0);
            case 1:
+               /* If a default database was specified, we need to remove it before we add
+                * the specified one.
+                */
+               free_stringlist(&dblist);
                split_to_stringlist(strdup(optarg), ", ", &dblist);
                break;
            case 2: