blob: b10e1b0cf62d19613e3d6d6a2594e9e3a22fc995 [file] [log] [blame]
mblighec0a9112006-04-28 00:44:28 +00001import test
2from autotest_utils import *
3
4# THIS TEST IS INCOMPLETE. IT WILL NOT WORK
5
6class sparse(test.test):
7 version = 1
8
9 # http://www.codemonkey.org.uk/projects/git-snapshots/sparse/sparse-2006-04-28.tar.gz
10 def setup(self, tarball = 'sparse-2006-04-28.tar.gz'):
11 tarball = unmap_url(self.bindir, tarball, self.tmpdir)
12 extract_tarball_to_dir(tarball, self.srcdir)
13 os.chdir(self.srcdir)
14
15 system('make')
16 system('ln check sparse')
17
18 self.top_dir = self.job.tmpdir+'/sparse'
mblighec0a9112006-04-28 00:44:28 +000019
mbligh76974d02006-09-13 23:20:52 +000020 def execute(self, kernel):
21 kernel.build(make_opts = 'C=1')