summaryrefslogtreecommitdiffstats
path: root/tests/runTests
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-02-01 19:00:56 +0000
committerAlec Warner <antarus@gentoo.org>2007-02-01 19:00:56 +0000
commite56e1c1caaa08325fdf398ac385bb804aa46c269 (patch)
tree5f77a393c9343edf65bbf94469db694e04fdcb2c /tests/runTests
parentc78d5fc325f9ed1cbac049e2b0bb52948a084e09 (diff)
downloadportage-e56e1c1caaa08325fdf398ac385bb804aa46c269.tar.gz
portage-e56e1c1caaa08325fdf398ac385bb804aa46c269.tar.bz2
portage-e56e1c1caaa08325fdf398ac385bb804aa46c269.zip
apparently I'm retarded and missed some of the tests..
svn path=/main/trunk/; revision=5864
Diffstat (limited to 'tests/runTests')
-rwxr-xr-xtests/runTests22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/runTests b/tests/runTests
deleted file mode 100755
index c44d36788..000000000
--- a/tests/runTests
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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.abspath(__file__))))
-
-# Grab SVN portage files instead of normal ones.
-sys.path.insert(0, os.path.join(sys.path[0], "pym"))
-
-import tests
-if __name__ == "__main__":
- result = tests.main()
- if result.failures:
- sys.exit(1)