Deleted Added
sdiff udiff text old ( 3727:7e3511898306 ) new ( 3734:5eb062f81950 )
full compact
1#! /usr/bin/env python
2# Copyright (c) 2005-2006 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;

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

72# Quote string s so it can be passed as a shell arg
73def shellquote(s):
74 if ' ' in s:
75 s = "'%s'" % s
76 return s
77
78try:
79 if not tests:
80 print "No tests specified."
81 sys.exit(1)
82
83 if 'all' in tests:
84 targets = ['build/%s/tests/%s' % (build, variant)
85 for build in builds
86 for variant in variants]
87 else:
88 targets = ['build/%s/tests/%s/%s' % (build, variant, test)
89 for build in builds
90 for variant in variants
91 for test in tests]

--- 12 unchanged lines hidden ---