필터 지우기
필터 지우기

CANoe-Simulink Test automation

조회 수: 7 (최근 30일)
소원
소원 2024년 3월 9일
답변: Kothuri 2024년 4월 29일
Hello, I'm working on test automation using CANoe-simulink.
I have a few problems and I need your help.
1. Canoe is not terminated when Matlab is terminated because the test is terminated.
--> The test is failing because canoe is running the next time it is running again.
2. Test results do not go to JENKINS.
--> simulink is running canoe and doing the test well. But I don't know how to hand over the fail information that occurred at this time to JENKINS.
Can you help me with this?
Thank you.

답변 (1개)

Kothuri
Kothuri 2024년 4월 29일
Hi,
I understand that the CANoe is not terminated when the MATLAB is terminated as the test is terminated. This might not happen automatically, depending on how the integration is setup. You can include a command such as
cleanupObj = onCleanup(@() system('command_to_terminate_CANoe'));
which can be a part of the try/catch block or a oncleanup function to ensure that CANoe terminates once the test is terminated.
To send the test reports to JENKINS, ensure that MATLAB tests generate reports in Junit or other formats that JENKINS supports and configuring Jenkins to parse and display these results by adding a post-build action to "Publish JUnit test result report".
To ensure that failure information is correctly propagated back to Jenkins, your MATLAB script or test runner should exit with a non-zero status code upon failure. You can use exit(failCount) where failCount is the number of failed tests.

카테고리

Help CenterFile Exchange에서 Results, Reporting, and Test File Management에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by