summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/runTests
blob: 55e07c5148983d4f55d5b038dce6e7b8ed8e341d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python
# runTests.py -- Portage Unit Test Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$


import os, sys
import os.path as osp

# Insert our parent dir so we can do shiny import "tests"
# This line courtesy of Marienz and Pkgcore ;)
sys.path.insert(0, osp.dirname(osp.dirname(osp.dirname(osp.abspath(__file__)))))

import portage.tests as tests

if __name__ == "__main__":
	result = tests.main()
	if not result.wasSuccessful():
		sys.exit(1)