summaryrefslogtreecommitdiffstats
path: root/test cases/python3/1 basic/subdir/subprog.py
blob: 08652f084b20ec812ad89f0a3ebda01f21b6814b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3

# In order to run this program, PYTHONPATH must be set to
# point to source root.

from gluon import gluonator
import sys

print('Running mainprog from subdir.')

if gluonator.gluoninate() != 42:
    sys.exit(1)