How to use get_kernel_build_ver method in autotest

Best Python code snippet using autotest_python

xen.py

Source:xen.py Github

copy

Full Screen

...64 self.kjob.build()65 self.job.logging.restore()66 xen_version = self.get_xen_build_ver()67 self.log('BUILD VERSION: Xen: %s Kernel:%s' % \68 (xen_version, self.kjob.get_kernel_build_ver()))69 def build_timed(self, *args, **kwds):70 raise NotImplementedError('build_timed() not implemented')71 def install(self, tag='', prefix = '/', extraversion='autotest'):72 """make install in the kernel tree"""73 self.log('Installing ...')74 os.chdir(self.build_dir)75 if not os.path.isdir(prefix):76 os.mkdir(prefix)77 self.boot_dir = os.path.join(prefix, 'boot')78 if not os.path.isdir(self.boot_dir):79 os.mkdir(self.boot_dir)80 # remember what we are going to install81 xen_version = '%s-%s' % (self.get_xen_build_ver(), extraversion)82 self.xen_image = self.boot_dir + '/xen-' + xen_version + '.gz'83 self.xen_syms = self.boot_dir + '/xen-syms-' + xen_version84 self.log('Installing Xen ...')85 os.environ['XEN_EXTRAVERSION'] = '-unstable-%s'% extraversion86 # install xen87 utils.system('make DESTDIR=%s -C xen install' % prefix)88 # install tools89 utils.system('make DESTDIR=%s -C tools install' % prefix)90 # install kernel91 ktag = self.kjob.get_kernel_build_ver()92 kprefix = prefix93 self.kjob.install(tag=ktag, prefix=kprefix)94 def add_to_bootloader(self, tag='autotest', args=''):95 """ add this kernel to bootloader, taking an96 optional parameter of space separated parameters97 e.g.: kernel.add_to_bootloader('mykernel', 'ro acpi=off')98 """99 # turn on xen mode100 self.job.bootloader.enable_xen_mode()101 # remove existing entry if present102 self.job.bootloader.remove_kernel(tag)103 # add xen and xen kernel104 self.job.bootloader.add_kernel(105 self.kjob.image, tag, initrd=self.kjob.initrd,...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run autotest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful