Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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.

Code Block
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.

Code Block
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:

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

Login by user ztest and run tests:

Code Block
sudo /opt/os-tests/bin/ostest

Test run script

Code Block
languagebash
#!/bin/bash

LOG="/var/tmp/ostest.`date "+%F-%T"`.txt"
uname -a > ${LOG}
sudo /opt/os-tests/bin/ostest /var/tmp 2>&1 | /usr/bin/tee -a ${LOG}

...