#!/usr/bin/env python3

# Minimal job that runs an also mininal executable test

import os
import sys
from avocado.core.job import Job

config = {'run.references': [os.path.join(os.path.dirname(__file__), 'tests', 'pass')]}

with Job(config) as j:
    sys.exit(j.run())
