* regcomp (and thus grep) now supports \<word\>

* running the tests requires the server

ok zhuk@
This commit is contained in:
naddy 2014-09-09 20:15:25 +00:00
parent 613dc9d33e
commit 541e2c63a6
2 changed files with 3 additions and 11 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.16 2014/07/12 07:19:56 zhuk Exp $
# $OpenBSD: Makefile,v 1.17 2014/09/09 20:15:25 naddy Exp $
COMMENT= C++ client API for PostgreSQL
@ -30,6 +30,7 @@ CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
# Regression tests start up and use a real database
TEST_DEPENDS = databases/postgresql,-server
PGDATA = ${WRKDIR}/testdb
PGDATABASE = pqxx-test
TEST_ENV = PGDATABASE=${PGDATABASE} \

View File

@ -1,16 +1,7 @@
$OpenBSD: patch-tools_lint,v 1.1 2014/07/12 07:19:56 zhuk Exp $
$OpenBSD: patch-tools_lint,v 1.2 2014/09/09 20:15:25 naddy Exp $
Unbreak tests.
--- tools/lint.orig Fri Jul 11 17:40:03 2014
+++ tools/lint Fri Jul 11 17:41:43 2014
@@ -18,7 +18,7 @@ EOF
# This version must be at the top of the Debian changelog.
check_debian_changelog() {
- if ! head -n1 debian/changelog | grep -q "^libpqxx ($PQXXVERSION\\>"
+ if ! head -n1 debian/changelog | grep -q "^libpqxx ($PQXXVERSION[^[:digit:]]"
then
cat <<EOF >&2
Version $PQXXVERSION is not at the top of debian/changelog.
@@ -42,7 +42,7 @@ count_includes() {
# Any file that includes compiler-internal-pre.hxx must also include
# compiler-internal-post.hxx, and vice versa.