diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2016-10-31 17:21:30 -0700 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2016-11-01 09:57:52 -0700 |
commit | a22b762111c99f40c643d8634dec67a7f33568ed (patch) | |
tree | 1384aa69baf2abce5aab7941b0b2dd0a0030820d /tests/tools/run-bindgen.py | |
parent | 796656656ead31b1573125a6c0531de13c4ae29d (diff) |
Always run tests with RUST_BACKTRACE=1
Diffstat (limited to 'tests/tools/run-bindgen.py')
-rwxr-xr-x | tests/tools/run-bindgen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/tools/run-bindgen.py b/tests/tools/run-bindgen.py index 258a60e5..bc8b567b 100755 --- a/tests/tools/run-bindgen.py +++ b/tests/tools/run-bindgen.py @@ -69,6 +69,7 @@ def parse_args(): def make_bindgen_env(): """Build the environment to run bindgen in.""" env = os.environ.copy() + env["RUST_BACKTRACE"] = "1" # El Capitan likes to unset dyld variables # https://forums.developer.apple.com/thread/9233 |