aboutsummaryrefslogtreecommitdiff
path: root/client/tests/posixtest/posixtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'client/tests/posixtest/posixtest.py')
-rw-r--r--client/tests/posixtest/posixtest.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/client/tests/posixtest/posixtest.py b/client/tests/posixtest/posixtest.py
deleted file mode 100644
index c8e3e1903f..0000000000
--- a/client/tests/posixtest/posixtest.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# POSIX test suite wrapper class. More information about the suite can be found
-# at http://posixtest.sourceforge.net/
-import os
-from autotest_lib.client.bin import test, utils
-
-
-__author__ = '''mohd.omar@in.ibm.com (Mohammed Omar)'''
-
-class posixtest(test.test):
- version = 1
-
- def initialize(self):
- self.job.require_gcc()
-
-
- # http://ufpr.dl.sourceforge.net/sourceforge/posixtest/posixtestsuite-1.5.2.tar.gz
- def setup(self, tarball = 'posixtestsuite-1.5.2.tar.gz'):
- self.posix_tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
- utils.extract_tarball_to_dir(self.posix_tarball, self.srcdir)
- os.chdir(self.srcdir)
- # Applying a small patch that introduces some linux specific
- # linking options
- utils.system('patch -p1 < ../posix-linux.patch')
- utils.make()
-
-
- def execute(self):
- os.chdir(self.srcdir)
- utils.system('./run_tests THR')