Belle II Software development
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>
19This file will exit with an exit code != 0 to probe the
20validation correctly detects and reports this.
21</description>
22</header>
23"""
24
25
26import sys
27
28if __name__ == "__main__":
29 print("This script will exit with code 20 on purpose")
30
31 sys.exit(20)
32
33# @endcond