Belle II Software  release-08-01-10
validationTestFail_runlast.py
1 #!/usr/bin/env python3
2 
3 
10 
11 # @cond SUPPRESS_DOXYGEN
12 
13 """
14 <header>
15 <contact>Kilian Lieret, Kilian.Lieret@campus.lmu.de</contact>
16 
17 
18 <description>
19 This file will exit with an exit code != 0 to probe the
20 validation correctly detects and reports this.
21 </description>
22 </header>
23 """
24 
25 
26 import sys
27 
28 if __name__ == "__main__":
29  print("This script will exit with code 20 on purpose")
30 
31  sys.exit(20)
32 
33 # @endcond