| Index: client/tests/libhugetlbfs/libhugetlbfs.py
|
| diff --git a/client/tests/libhugetlbfs/libhugetlbfs.py b/client/tests/libhugetlbfs/libhugetlbfs.py
|
| index 373a5ba6a078fb57001b5be8195ade1d2c7f3548..2fe6b4596e53180030fef9c6ac6e1081d8a97bb3 100644
|
| --- a/client/tests/libhugetlbfs/libhugetlbfs.py
|
| +++ b/client/tests/libhugetlbfs/libhugetlbfs.py
|
| @@ -44,9 +44,9 @@ class libhugetlbfs(test.test):
|
| # make might fail if there are no proper headers for the 32 bit
|
| # version, in that case try only for the 64 bit version
|
| try:
|
| - utils.make()
|
| + utils.system('make')
|
| except:
|
| - utils.make('OBJDIRS=obj64')
|
| + utils.system('make OBJDIRS=obj64')
|
|
|
|
|
| def run_once(self):
|
| @@ -54,9 +54,9 @@ class libhugetlbfs(test.test):
|
| # make check might fail for 32 bit if the 32 bit compile earlier
|
| # had failed. See if it passes for 64 bit in that case.
|
| try:
|
| - utils.make('check')
|
| + utils.system('make check')
|
| except:
|
| - utils.make('check OBJDIRS=obj64')
|
| + utils.system('make check OBJDIRS=obj64')
|
|
|
|
|
| def cleanup(self):
|
|
|