regress (4193:1363532bc464) regress (4949:302707329b7e)
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 85 unchanged lines hidden (view full) ---

94 for build in builds
95 for variant in variants
96 for test in tests]
97
98 scons_opts = options.scons_opts
99 if options.jobs != 1:
100 scons_opts += ' -j %d' % options.jobs
101
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 85 unchanged lines hidden (view full) ---

94 for build in builds
95 for variant in variants
96 for test in tests]
97
98 scons_opts = options.scons_opts
99 if options.jobs != 1:
100 scons_opts += ' -j %d' % options.jobs
101
102 system('scons %s %s' % (scons_opts, ' '.join(targets)))
102 system('scons IGNORE_STYLE=True %s %s' % (scons_opts, ' '.join(targets)))
103
104 sys.exit(0)
105
106except OSError, exc:
107 print "%s: " % progname, exc
108 sys.exit(1)
103
104 sys.exit(0)
105
106except OSError, exc:
107 print "%s: " % progname, exc
108 sys.exit(1)