Belle II Software  release-05-01-25
validationTestFail_runlast.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 """
5 <header>
6 <contact>Kilian Lieret, Kilian.Lieret@campus.lmu.de</contact>
7 </header>
8 """
9 
10 """
11 This file will exit with an exit code != 0 to probe the
12 validation correctly detects and reports this.
13 """
14 
15 import sys
16 
17 print("This script will exit with code 20 on purpose")
18 
19 sys.exit(20)