Kevin Schoedel | 6fcabc5 | 2020-08-31 14:37:45 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright (c) 2020 Project CHIP Authors |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | # Copyright 2014 The Chromium Authors. All rights reserved. |
| 17 | # |
| 18 | # Redistribution and use in source and binary forms, with or without |
| 19 | # modification, are permitted provided that the following conditions are |
| 20 | # met: |
| 21 | # |
| 22 | # * Redistributions of source code must retain the above copyright |
| 23 | # notice, this list of conditions and the following disclaimer. |
| 24 | # * Redistributions in binary form must reproduce the above |
| 25 | # copyright notice, this list of conditions and the following disclaimer |
| 26 | # in the documentation and/or other materials provided with the |
| 27 | # distribution. |
| 28 | # * Neither the name of Google Inc. nor the names of its |
| 29 | # contributors may be used to endorse or promote products derived from |
| 30 | # this software without specific prior written permission. |
| 31 | # |
| 32 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 33 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 34 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 35 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 36 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 37 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 38 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 39 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 40 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 41 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 42 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 43 | |
| 44 | """Helper script for GN to run an arbitrary binary. See compiled_action.gni. |
| 45 | |
| 46 | Run with: |
| 47 | python gn_run_binary.py <binary_name> [args ...] |
| 48 | """ |
| 49 | |
| 50 | from __future__ import print_function |
| 51 | |
| 52 | import subprocess |
| 53 | import sys |
| 54 | |
| 55 | args = sys.argv[1:] |
| 56 | |
| 57 | ret = subprocess.call(args) |
| 58 | if ret != 0: |
Song GUO | f031500 | 2021-08-12 23:31:58 +0800 | [diff] [blame] | 59 | if ret <= -100: |
| 60 | # Windows error codes such as 0xC0000005 and 0xC0000409 are much easier to |
| 61 | # recognize and differentiate in hex. In order to print them as unsigned |
| 62 | # hex we need to add 4 Gig to them. |
| 63 | print('%s failed with exit code 0x%08X' % |
| 64 | (sys.argv[1], ret + (1 << 32))) |
| 65 | else: |
| 66 | print('%s failed with exit code %d' % (sys.argv[1], ret)) |
Kevin Schoedel | 6fcabc5 | 2020-08-31 14:37:45 -0400 | [diff] [blame] | 67 | sys.exit(ret) |