Versions Compared

Key

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

...

Info

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

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

#!/bin/bash

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

uname -a > \${LOG}

/opt/libc-tests/bin/libctest 2>&1 | /usr/bin/tee -a \${LOG}

EOT

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

After running of this script you will find the log in the /var/tmp/libc-test.<ISO TIME>.txt file. It will contain information in the format that is used in Test Results.

...