[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-reduce / Inputs / test-crash-vars.py
blob2d239a6e463438277274e6f5332066cf61420010
1 import os
2 import sys
4 disable_crash_report = os.getenv("LLVM_DISABLE_CRASH_REPORT")
5 disable_symbolization = os.getenv("LLVM_DISABLE_SYMBOLIZATION")
7 # Test that this is an explicitly set true value. If we preserve the
8 # debug environment a pre-set explicit 0 should work.
9 sys.exit(disable_crash_report != "1" or disable_symbolization != "1")