Versions Compared

Key

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

...

1. Setup VM with:

  • CPU - 4

  • Memory - 8GB

  • Hard disk - 100GB

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

Setup process is described in this instruction.

Info

Note : Create ztest user

...

if you

...

Code Block
sudo useradd -m -d

forgot to do it according the instruction:

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

ztest

sudo passwd ztest

echo "ztest ALL=(ALL:ALL)

NOPASSWD:

ALL"

>>

/etc/sudoers.d/ztest

Use this guide to prepare the VM for the test:

2. Install packages for

...

OS tests:

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

3. Login by user ztest and run tests:

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

Test run script

bash
Code Block
language

Wait for several minutes and have found full logs at:

/var/tmp/test_results/<ISO TIME>

Info

Note : You can run the test using a shell script. It can be created in any text editor or by executing the following command:

ztest@zone:~# cat > test-script.sh <<EOT

#!/bin/bash

LOG="/var/tmp/ostest-test.`date

"+%F-%T"`.txt"

uname

-a

>

\${LOG}

sudo

/opt/os-tests/bin/ostest

/var/tmp

2>&1

|

/usr/bin/tee

-a

\${LOG}

Wait for several minutes and have found full logs at:

EOT

ztest@zone:~# chmod 777 test-script.sh

After running of this script you will find the log in the /var/tmp/ostest-test

...

.<ISO TIME>.txt file. It will contain information in the format that is used in Test Results.

PS:

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