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