| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright 2012 the V8 project authors. All rights reserved. | 3 # Copyright 2012 the V8 project authors. All rights reserved. |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "android_x64", | 168 "android_x64", |
| 169 "arm", | 169 "arm", |
| 170 "ia32", | 170 "ia32", |
| 171 "x87", | 171 "x87", |
| 172 "mips", | 172 "mips", |
| 173 "mipsel", | 173 "mipsel", |
| 174 "mips64", | 174 "mips64", |
| 175 "mips64el", | 175 "mips64el", |
| 176 "nacl_ia32", | 176 "nacl_ia32", |
| 177 "nacl_x64", | 177 "nacl_x64", |
| 178 "s390", |
| 179 "s390x", |
| 178 "ppc", | 180 "ppc", |
| 179 "ppc64", | 181 "ppc64", |
| 180 "x64", | 182 "x64", |
| 181 "x32", | 183 "x32", |
| 182 "arm64"] | 184 "arm64"] |
| 183 # Double the timeout for these: | 185 # Double the timeout for these: |
| 184 SLOW_ARCHS = ["android_arm", | 186 SLOW_ARCHS = ["android_arm", |
| 185 "android_arm64", | 187 "android_arm64", |
| 186 "android_ia32", | 188 "android_ia32", |
| 187 "android_x64", | 189 "android_x64", |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 "--coverage-dir=%s" % options.sancov_dir]) | 839 "--coverage-dir=%s" % options.sancov_dir]) |
| 838 except: | 840 except: |
| 839 print >> sys.stderr, "Error: Merging sancov files failed." | 841 print >> sys.stderr, "Error: Merging sancov files failed." |
| 840 exit_code = 1 | 842 exit_code = 1 |
| 841 | 843 |
| 842 return exit_code | 844 return exit_code |
| 843 | 845 |
| 844 | 846 |
| 845 if __name__ == "__main__": | 847 if __name__ == "__main__": |
| 846 sys.exit(Main()) | 848 sys.exit(Main()) |
| OLD | NEW |