summaryrefslogtreecommitdiffstats
path: root/test cases/common/51 run target/check_exists.py
blob: b6fc967eb2d30a42aa614a3899bb669bc4d08786 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env python3

import os
import sys

if not os.path.isfile(sys.argv[1]):
    raise Exception("Couldn't find {!r}".format(sys.argv[1]))