diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-07-20 14:02:56 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-07-20 14:02:56 +0300 |
commit | f2f9f8a9ed2f59e4ed229f09fc95f9168cc4b473 (patch) | |
tree | 645afbebb2e9774723edfbbf916a00f4bf739e3e /tests/SConstruct | |
parent | 788d2825b06426f50064dc5f29b07ce0be105b2b (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/SConstruct | 2 |
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))) |