From 6296dbc7490f63ee5c918c1b11429014777eaba2 Mon Sep 17 00:00:00 2001 From: Kp Date: Sat, 9 Nov 2013 19:01:37 +0000 Subject: [PATCH] Do not document tests with leading underscore --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 49e256f6f..3efc840f7 100644 --- a/SConstruct +++ b/SConstruct @@ -288,7 +288,7 @@ class DXXCommon(LazyObjectConstructor): { 'variable': BoolVariable, 'arguments': [ - ('sconf_%s' % name[6:], None, ConfigureTests.describe(name) or ('assume result of %s' % name)) for name in ConfigureTests.implicit_tests + ConfigureTests.custom_tests + ('sconf_%s' % name[6:], None, ConfigureTests.describe(name) or ('assume result of %s' % name)) for name in ConfigureTests.implicit_tests + ConfigureTests.custom_tests if name[0] != '_' ], }, {