#!/usr/bin/env python3
# this mimics the /bin/true binary available on many systems
# and results in a PASS when executed as a test
import sys

if __name__ == '__main__':
   sys.exit(0)
