Convert all python code to use four-space indents instead of eight-space tabs.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@1658 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/rmaptest/rmaptest.py b/client/tests/rmaptest/rmaptest.py
index f4cf3af..9b65547 100644
--- a/client/tests/rmaptest/rmaptest.py
+++ b/client/tests/rmaptest/rmaptest.py
@@ -5,24 +5,24 @@
# tests is a simple array of "cmd" "arguments"
tests = [["rmaptest", "-h -i100 -n100 -s100 -t100 -V10 -v file1.dat"],
- ["rmaptest", "-l -i100 -n100 -s100 -t100 -V10 -v file2.dat"],
- ["rmaptest", "-r -i100 -n100 -s100 -t100 -V10 -v file3.dat"],
- ]
+ ["rmaptest", "-l -i100 -n100 -s100 -t100 -V10 -v file2.dat"],
+ ["rmaptest", "-r -i100 -n100 -s100 -t100 -V10 -v file3.dat"],
+ ]
name = 0
arglist = 1
class rmaptest(test.test):
- version = 1
- preserve_srcdir = True
+ version = 1
+ preserve_srcdir = True
- def setup(self):
- os.chdir(self.srcdir)
- utils.system('gcc -Wall -o rmaptest rmap-test.c')
+ def setup(self):
+ os.chdir(self.srcdir)
+ utils.system('gcc -Wall -o rmaptest rmap-test.c')
- def execute(self, args = ''):
- os.chdir(self.tmpdir)
- for test in tests:
- cmd = self.srcdir + '/' + test[name] + ' ' \
- + args + ' ' + test[arglist]
- utils.system(cmd)
+ def execute(self, args = ''):
+ os.chdir(self.tmpdir)
+ for test in tests:
+ cmd = self.srcdir + '/' + test[name] + ' ' \
+ + args + ' ' + test[arglist]
+ utils.system(cmd)