From cf184be6e274c6aa928c4ecfc8eba011360da7c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Wed, 27 Jun 2012 22:50:07 +0000 Subject: [PATCH] Updated the Boost Build core_language.py test to not fail when run on Windows OSs that have a HKLM\SYSTEM\CurrentControlSet\AddServices key, as detected on the VeecoFTC Boost library tester Windows XP Professional SP3 machine. [SVN r79150] --- v2/test/core-language/test.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/test/core-language/test.jam b/v2/test/core-language/test.jam index 90a0bfac2..b023be448 100644 --- a/v2/test/core-language/test.jam +++ b/v2/test/core-language/test.jam @@ -1308,9 +1308,9 @@ if $(NT) local r ; for local x in $(param:L) { - if ! $(found) && $(x) = "policies" + if ! x in $(found) && $(x) in "addservices" "policies" { - found = true ; + found += $(x) ; } else {