From d868294d90703761578e3e4808ed1787d6810221 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 28 Aug 2012 15:19:17 +0200 Subject: [PATCH] Unit Tests - Corrected FreeBSD rx unit tests. Conflicts: test/rx.t.cpp --- test/rx.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rx.t.cpp b/test/rx.t.cpp index b42846c52..a7046cc53 100644 --- a/test/rx.t.cpp +++ b/test/rx.t.cpp @@ -88,7 +88,7 @@ int main (int argc, char** argv) ut.ok (r9.match (start, end, text), "e there are matches"); ut.is (start.size (), (size_t) 6, "e == 6 matches"); -#ifdef DARWIN +#if defined(DARWIN) || defined(CYGWIN) || defined(FREEBSD) text = "this is the end."; ut.pass (text + " =~ /\\bthe/"); ut.pass (text + " =~ /the\\b/");