aboutsummaryrefslogtreecommitdiffstats
path: root/tests/SConstruct
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-07-20 14:02:56 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-07-20 14:02:56 +0300
commitf2f9f8a9ed2f59e4ed229f09fc95f9168cc4b473 (patch)
tree645afbebb2e9774723edfbbf916a00f4bf739e3e /tests/SConstruct
parent788d2825b06426f50064dc5f29b07ce0be105b2b (diff)
Fix problem with .options file and extension fields.
The options for an extension field were being looked up under wrong name (MessageName instead of MessageName.fieldname). Fixed the problem and added regression test. Created a new subfolder for regression test cases. Update issue 125 Status: FixedInGit
Diffstat (limited to 'tests/SConstruct')
-rw-r--r--tests/SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SConstruct b/tests/SConstruct
index 7a278443..57167ccc 100644
--- a/tests/SConstruct
+++ b/tests/SConstruct
@@ -141,6 +141,6 @@ import os.path
env['VARIANT_DIR'] = 'build'
env['BUILD'] = '#' + env['VARIANT_DIR']
env['COMMON'] = '#' + env['VARIANT_DIR'] + '/common'
-for subdir in Glob('*/SConscript'):
+for subdir in Glob('*/SConscript') + Glob('regression/*/SConscript'):
SConscript(subdir, exports = 'env', variant_dir = env['VARIANT_DIR'] + '/' + os.path.dirname(str(subdir)))