SConstruct (2953:10e7700b27f6) | SConstruct (3036:5d8a97f49d12) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 484 unchanged lines hidden (view full) --- 493 # to the configured options. It returns a list of environments, 494 # one for each variant build (debug, opt, etc.) 495 envList = SConscript('src/SConscript', build_dir = build_path, 496 exports = 'env') 497 498 # Set up the regression tests for each build. 499 for e in envList: 500 SConscript('tests/SConscript', | 1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 484 unchanged lines hidden (view full) --- 493 # to the configured options. It returns a list of environments, 494 # one for each variant build (debug, opt, etc.) 495 envList = SConscript('src/SConscript', build_dir = build_path, 496 exports = 'env') 497 498 # Set up the regression tests for each build. 499 for e in envList: 500 SConscript('tests/SConscript', |
501 build_dir = os.path.join(build_path, 'test', e.Label), | 501 build_dir = os.path.join(build_path, 'tests', e.Label), |
502 exports = { 'env' : e }, duplicate = False) 503 504Help(help_text) 505 506################################################### 507# 508# Let SCons do its thing. At this point SCons will use the defined 509# build environments to build the requested targets. 510# 511################################################### 512 | 502 exports = { 'env' : e }, duplicate = False) 503 504Help(help_text) 505 506################################################### 507# 508# Let SCons do its thing. At this point SCons will use the defined 509# build environments to build the requested targets. 510# 511################################################### 512 |