]> git.lizzy.rs Git - rust.git/blobdiff - src/etc/check-summary.py
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / etc / check-summary.py
index de777c997299d1d8b82efba5d91d573a9ed5655a..55428a6fcc4b6927bb3bda4e33a53a3cae3ead8c 100755 (executable)
@@ -1,6 +1,16 @@
 #!/usr/bin/env python
-# xfail-license
+#
+# Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
+# file at the top-level directory of this distribution and at
+# http://rust-lang.org/COPYRIGHT.
+#
+# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+# option. This file may not be copied, modified, or distributed
+# except according to those terms.
 
+import glob
 import sys
 
 if __name__ == '__main__':
@@ -24,7 +34,8 @@ if __name__ == '__main__':
     def count(t):
         return sum(map(lambda (f, s): len(s.get(t, [])), summaries))
     logfiles = sys.argv[1:]
-    map(summarise, logfiles)
+    for files in map(glob.glob, logfiles):
+        map(summarise, files)
     ok = count('ok')
     failed = count('failed')
     ignored = count('ignored')