ATLAS Offline Software
Loading...
Searching...
No Matches
Suicide.py
Go to the documentation of this file.
1#! /usr/bin/env python
2
3# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
4#
5# $Id: Suicide.py 634986 2014-12-10 12:43:21Z graemes $
6# Script which will kill itself (useful for testing transforms)
7#
8import signal
9import os
10
11os.kill(os.getpid(), signal.SIGKILL)