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 with any text editor or by executing the following command:

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

#!/bin/bash

if [ -n "\$1" ]; then

CLOG="/var/tmp/elf-stability.\$(date +%F-%T).txt"

echo "=== Stability elf tests \$(date +%F-%T) ===" > \${CLOG}

for (( i=1; i<=\$1; i++ ))

do

echo "------------------ Pass \${i} ---------------------" 2>&1 | /usr/bin/tee -a \${CLOG}

LOG="/var/tmp/elftest.\$i.txt"

uname -a > \${LOG}

sudo /opt/elf-tests/bin/elftest 2>&1 | /usr/bin/tee -a \${LOG}

folder="\$(grep 'Log directory:' \${LOG} | sed 's/Log directory:[ \\t]*//; s/[ \\t]*\\$//')"

rt="\$(grep 'Running Time:' \${LOG} | sed 's/Running Time:[ \\t]*//; s/[ \\t]*\\$//')"

echo " Percent passed: \${percent}" >> \${CLOG}

echo " Running Time: \${rt}" >> \${CLOG}

if [ "\${percent}" == "100.0%" ]; then

sudo rm -f /var/tmp/*.o /var/tmp/*.c /var/tmp/*.le

sudo rm -r -f /var/tmp/test_results

else

echo " PASS \${i} IS FAILED! (See \${LOG})" >> \${CLOG}

echo "Fault on \${i} pass! Just \${percent} are successfull. You can find logs in \${folder}." 2>&1 | /usr/bin/tee -a \${LOG}

exit 1

fi

done

else

LOG="/var/tmp/elftest.\$(date +%F-%T).txt"

uname -a > \${LOG}

sudo /opt/elf-tests/bin/elftest 2>&1 | /usr/bin/tee -a \${LOG}

fi

EOT

ztest@zone:~# sed -i '/./!d' test-script.sh && chmod 777 test-script.shchmod 777 test-script.sh

You can run the test script in a single mode, i.e. all tests will be executed once (./test-script.sh - without parameters). After running of this script you will find the log in the /var/tmp/elftest.<ISO TIME>.txt file. It will contain information in the format that is used in Test Results.

And the second one is stability mode - for testing the elf stability. In this case you should put the number of cycles (for example, to run 1000 cycles - ./test-script.sh 1000). And now after script is finished the common log will be placed to the /var/tmp/elf-stability.<ISO TIME>.txt file, and you will find logs about separate cycles in elftest.<N>.txt form in the /var/tmp folder, where <N> - is a cycle number.

...