diff options
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/gna/testsuite.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/gna/testsuite.py b/testsuite/gna/testsuite.py index 13ae4a24b..d8859400e 100755 --- a/testsuite/gna/testsuite.py +++ b/testsuite/gna/testsuite.py @@ -76,5 +76,6 @@ def run(): print('{} tests run'.format(num)) -run() +if __name__ == '__main__': + run() |