Setup VM with:
CPU - 4
Memory - 8GB
Hard disk - 100GB
Have to use DEBUG build, where we have debug macro
Create user:
sudo useradd -m -d /var/ztest -g staff -s /bin/bash ztest # add password for remote ssh sudo passwd ztest
Add user to sudo:
echo "ztest ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers.d/ztest
if you created a user at the vm preparation stage, then skip this step.
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.