#!/usr/bin/bash
source "${OET_PATH}"/libs/locallibs/common_lib.sh
function pre_test() {
LOG_INFO "Start to prepare the test environment."
if [[ "${NODE1_FRAME}" != "x86_64" && "${NODE1_FRAME}" != "aarch64" ]]; then
LOG_WARN "Current architecture (${NODE1_FRAME}) is not supported by powerapi, skipping test."
exit 255
fi
DNF_INSTALL "powerapi-devel gcc"
cp common/demo_main.c ./
useradd test1
sed -i "s/admin=root/admin=test1/g" /etc/sysconfig/pwrapis/pwrapis_config.ini
echo "int main(int argc, const char *args[])
{
TEST_PWR_Register();
TEST_PWR_CPU_GetPerfData();
TEST_PWR_UnRegister();
return 0;
}
" >> demo_main.c
gcc ./demo_main.c -o demo_main -lpwrapi
cp demo_main /home/test1/
LOG_INFO "End to prepare the test environment."
}
function run_test() {
LOG_INFO "Start to run test."
SLEEP_WAIT 5
su - test1 -c "./demo_main" > test.log
IPCResult=$(grep "IPC: .*, LLC misses: .*" test.log | awk -F": " '{print $2}' | awk -F"," '{print $1}')
LLCResult=$(grep "IPC: .*, LLC misses: .*" test.log | awk -F": " '{print $3}')
test "$(echo "${IPCResult} > 0.00000000"|bc)" -eq 1 -a "$(echo "${LLCResult} > 0.00000000"|bc)" -eq 1
CHECK_RESULT $? 0 0 "Check interface TEST_PWR_CPU_GetPerfData failed"
LOG_INFO "End to run test."
}
function post_test() {
LOG_INFO "Start to restore the test environment."
rm -rf demo_main* test.log
sed -i "s/admin=test1/admin=root/g" /etc/sysconfig/pwrapis/pwrapis_config.ini
SLEEP_WAIT 5
userdel -r test1
DNF_REMOVE "$@"
LOG_INFO "End to restore the test environment."
}
main "$@"