Skip to content

Commit 2a41ea6

Browse files
committed
Fix wrong package name for fiotest
fiotest depends on libio-dev on ubuntu. But the package libio-devel was added to generic list, which is unavailable on ubuntu. This patch fixes it. Signed-off-by: Narasimhan V <16101053+narasimhan-v@users.noreply.github.com>
1 parent 366d652 commit 2a41ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io/disk/fiotest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def setUp(self):
8989
self.cancel("btrfs is not supported with \
9090
RHEL 7.4 onwards")
9191

92-
pkg_list = ['libaio-devel', 'cmake', 'gcc-c++']
92+
pkg_list = ['cmake', 'gcc-c++']
9393
if distro.detect().name in ['Ubuntu', 'debian']:
9494
pkg_list.append('libaio-dev')
9595
if fstype == 'btrfs':

0 commit comments

Comments
 (0)