Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: client/deps/iwcap/iwcap.py

Issue 563022: wifi h/w capabilities test (Closed)
Patch Set: fix tarball Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « client/deps/iwcap/control ('k') | client/deps/iwcap/iwcap.tar.gz » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2
3 import os, common
4 from autotest_lib.client.bin import utils
5
6 version = 1
7
8 def setup(tarball, topdir):
9 srcdir = os.path.join(topdir, 'src')
10 utils.extract_tarball_to_dir(tarball, srcdir)
11 os.chdir(srcdir)
12 utils.system('make BINDIR=%s install' % (topdir))
13 os.chdir(topdir)
14
15 pwd = os.getcwd()
16 tarball = os.path.join(pwd, 'iwcap.tar.gz')
17 utils.update_version(pwd + '/src', False, version, setup, tarball, pwd)
OLDNEW
« no previous file with comments | « client/deps/iwcap/control ('k') | client/deps/iwcap/iwcap.tar.gz » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698