Add '-j' option directly to regress script (passed to scons).
authorSteve Reinhardt <stever@eecs.umich.edu>
Sun, 10 Dec 2006 06:42:16 +0000 (01:42 -0500)
committerSteve Reinhardt <stever@eecs.umich.edu>
Sun, 10 Dec 2006 06:42:16 +0000 (01:42 -0500)
--HG--
extra : convert_revision : 9776806b24da70b815280e47d2d5ec8674c82669

util/regress

index 8e60b6fee36c9c0fd66ad96737e87640421ec052..930a8be4805262e7013b8f935e8ae81e8f9fa307 100755 (executable)
@@ -48,6 +48,8 @@ optparser.add_option('--variants', dest='variants',
                      " (default: '%default')" )
 optparser.add_option('--scons-opts', dest='scons_opts', default='',
                      help='scons options', metavar='OPTS')
+optparser.add_option('-j', '--jobs', type='int', default=1,
+                     help='number of parallel jobs to use')
 
 (options, tests) = optparser.parse_args()
 
@@ -88,7 +90,11 @@ try:
                   for variant in variants
                   for test in tests]
 
-    system('scons %s %s' % (options.scons_opts, ' '.join(targets)))
+    scons_opts = options.scons_opts
+    if options.jobs != 1:
+        scons_opts += ' -j %d' % options.jobs
+
+    system('scons %s %s' % (scons_opts, ' '.join(targets)))
 
     sys.exit(0)