From 84585a916af74c30f856c21c2a412aa6252e3788 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 10 Sep 2017 13:14:44 +0300 Subject: [PATCH] Try tools/name/test if libs/name/test doesn't exist in ci_boost_test_library --- ci_boost_test_library.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci_boost_test_library.py b/ci_boost_test_library.py index 48ba2ef..416e6d0 100644 --- a/ci_boost_test_library.py +++ b/ci_boost_test_library.py @@ -43,6 +43,10 @@ class script(script_common): target = 'libs/' + m.group(1) + '/test' + if not os.path.exists( target ): + + target = 'tools/' + m.group(1) + '/test' + if os.path.exists( target ): # Build b2 @@ -58,6 +62,7 @@ class script(script_common): os.environ['PATH'] = os.pathsep.join([self.root_dir,os.environ['PATH']]) # Headers + utils.check_call( 'b2', '-d0', 'headers' ) # Test updated library