Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Setup VM with:

  • CPU - 4

  • Memory - 8GB

  • Hard disk - 100GB

  • Have to use DEBUG build, where we have debug macro

Create user:

if you created a user at the vm preparation stage, then skip this step.

sudo useradd -m -d /var/ztest -g staff -s /bin/bash ztest
# add password for remote ssh
sudo passwd ztest

Add user to sudo:

if you created a user at the vm preparation stage, then skip this step.

echo "ztest ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers.d/ztest

Use this guide to prepare the VM for the test:

Install packages for os tests:

sudo apt update
sudo apt install system-test-ostest testrunner python build-essential

Login by user ztest and run tests:

sudo /opt/os-tests/bin/ostest

Test run script

#!/bin/bash

LOG="/var/tmp/ostest.`date "+%F-%T"`.txt"

sudo /opt/os-tests/bin/ostest /var/tmp 2>&1 | /usr/bin/tee ${LOG}

Wait for several minutes and have found full logs at:

/var/tmp/test_results/<ISO TIME>

PS:

If the secflags_dts test failed, install the libmvec package and run the test again.

  • No labels