summaryrefslogtreecommitdiffstats
path: root/test/functest/gluon-test-suite.py
blob: 2a648434722278164c61a9585c54e6667d1c4304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python

import sys

def main():
    print "Running Gluon test suite..."
    #
    # TODO: awesome test
    #
    print "Gluon test suite successfully completed."
    return 0

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