meta-intel/lib/oeqa/runtime/cases/isal.py
Yeoh Ee Peng 36b7c0a3c6 runtime/isal: Enable sanity test
isal test validate that intel intelligent storage acceleration library
can provide accelerated compression using igzip executable.

Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2020-03-23 07:55:54 +08:00

25 lines
1.0 KiB
Python

import os
from oeqa.runtime.decorator.package import OEHasPackage
from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.decorator.depends import OETestDepends
class IsalTest(OERuntimeTestCase):
@OEHasPackage(['isa-l'])
def test_isal_igzip_version(self):
command = 'igzip -V'
(status, output) = self.target.run(command)
self.assertEqual(status, 0, msg="Error messages: %s" % output)
@OETestDepends(['isal.IsalTest.test_isal_igzip_version'])
def test_isal_igzip_can_compress(self):
command = 'echo "hello" > /tmp/igzip_sample'
(status, output) = self.target.run(command)
self.assertEqual(status, 0, msg="Error messages: %s" % output)
command = 'igzip -z /tmp/igzip_sample'
(status, output) = self.target.run(command)
self.assertEqual(status, 0, msg="Error messages: %s" % output)
command = 'rm /tmp/igzip_sample*'
(status, output) = self.target.run(command)
self.assertEqual(status, 0, msg="Error messages: %s" % output)