You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some tests may only run on certain micro-architecture. TKG should check micro-architecture on the machine and execute/skip tests accordingly. Frome example, some VectorAPI tests only run on Z13/Z14 or newer, CRIU portability tests run on skylake, etc. This feature may further extend to check other machine info (i.e., RAM, CPU, application installed, etc) as needed.
TKG runs cmd to detect the machine info:
cmd for detecting skylake
cat /proc/cpuinfo | grep 'model name' | uniq
cmd for detecting z version with newer openj9 JDK:
Would also like a check for whether we are in a containerized environment or not, something like this: if grep -sq 'docker\|lxc' /proc/1/cgroup; then echo "I am running on Docker."; else echo "not docker "; fi
Some tests may only run on certain micro-architecture. TKG should check micro-architecture on the machine and execute/skip tests accordingly. Frome example, some VectorAPI tests only run on Z13/Z14 or newer, CRIU portability tests run on skylake, etc. This feature may further extend to check other machine info (i.e., RAM, CPU, application installed, etc) as needed.
TKG runs cmd to detect the machine info:
platformRequirements
in playlist.xml should be enhanced for setting specific hardware or software requirements.Related issue:
runtimes/openj9-jit-z/issues/711
runtimes/infrastructure/issues/7037
#45 (comment)
The text was updated successfully, but these errors were encountered: