Analyze Code and Test Software-in-the-Loop

Code Analysis and Testing Software-in-the-Loop Overview

Analyze code to detect errors, check standards compliance, and evaluate key metrics such as length and cyclomatic complexity. Typically for handwritten code, you check for run-time errors with static code analysis and run test cases that evaluate the code against requirements and evaluate code coverage. Based on the results, refine the code and add tests. For generated code, demonstrate that code execution produces equivalent results to the model by using the same test cases and baseline results. Compare the code coverage to the model coverage. Based on test results, add tests and modify the model to regenerate code.

Analyze Code for Defects, Metrics, and MISRA C:2012

This workflow describes how to check if your model produces MISRA® C:2012 compliant code and how to check your generated code for code metrics, code defects, and MISRA compliance. To produce more MISRA compliant code from your model, you use the code generation and Model Advisor. To check whether the code is MISRA compliant, you use the Polyspace® MISRA C:2012 checker and report generation capabilities. For this example, you use the model simulinkCruiseErrorAndStandardsExample. To open the model:

  1. Open the project.

    path = fullfile(matlabroot,'toolbox','shared','examples',...
    'verification','src','cruise')
    run(fullfile(path,'slVerificationCruiseStart'))

  2. From the project, open the model simulinkCruiseErrorAndStandardsExample.

Run Code Generator Checks

Before you generate code from your model, there are steps that you can take to generate code more compliant with MISRA C and more compatible with Polyspace. This example shows how to use the Code Generation Advisor to check your model before generating code.

  1. Right-click Compute target speed and select C/C++ Code > Code Generation Advisor.

  2. Select the Code Generation Advisor folder. In the right pane, move Polyspace to Selected objectives - prioritized . The MISRA C:2012 guidelines objective is already selected.

  3. Click Run Selected Checks.

    The Code Generation Advisor checks whether there are any blocks or configuration settings that are not recommended for MISRA C:2012 compliance and Polyspace code analysis. For this model, the check for incompatible blocks passes, but there are some configuration settings that are incompatible with MISRA compliance and Polyspace checking.

  4. Click on check that did not pass. Accept the parameter changes by selecting Modify Parameters.

  5. Rerun the check by selecting Run This Check.

Run Model Advisor Checks

Before you generate code from your model, there are steps you can take to generate code that is more compliant with MISRA C and more compatible with Polyspace. This example shows you how to use the Model Advisor to check your model before generating code.

  1. At the bottom of the Code Generation Advisor window, select Model Advisor.

  2. Under the By Task folder, select the Modeling Standards for MISRA C:2012 advisor checks.

  3. Click Run Selected Checks and review the results.

  4. If any of the tasks fail, make the suggested modifications and rerun the checks until the MISRA modeling guidelines pass.

Generate and Analyze Code

After you have done the model compliance checking, you can generate the code. With Polyspace, you can check your code for compliance with MISRA C:2012 and generate reports to demonstrate compliance with MISRA C:2012.

  1. In the Simulink® editor, right-click Compute target speed and select C/C++ Code > Build This Subsystem.

  2. Use the default settings for the tunable parameters and select Build.

  3. After the code is generated, right-click Compute target speed and select Polyspace > Options.

  4. Click the Configure (Polyspace Bug Finder) button. This option allows you to choose more advanced Polyspace analysis options in the Polyspace configuration window.

  5. On the same pane, select Calculate Code Metrics (Polyspace Bug Finder). This option turns on code metric calculations for your generated code.

  6. Save and close the Polyspace configuration window.

  7. From your model, right-click Compute target speed and select Polyspace > Verify > Code Generated For Selected Subsystem.

    Polyspace Bug Finder™ analyzes the generated code for a subset of MISRA checks and defect checks. You can see the progress of the analysis in the MATLAB Command Window. Once the analysis is finished, the Polyspace environment opens.

Review Results

After you run a Polyspace analysis of your generated code, the Polyspace environment shows you the results of the static code analysis.

  1. Expand the tree for rule 8.7 and click through the different results.

    Rule 8.7 states that functions and objects should not be global if the function or object is local. As you click through the 8.7 violations, you can see that these results refer to variables that other components also use, such as CruiseOnOff. You can annotate your code or your model to justify every result. But, because this model is a unit in a larger program, you can also change the configuration of the analysis to check only a subset of MISRA rules.

  2. In your model, right-click Compute target speed and select Polyspace > Options.

  3. Set the Settings from (Polyspace Bug Finder) option to Project configuration. This option allows you to choose a subset of MISRA rules in the Polyspace configuration.

  4. Click the Configure button.

  5. In the Polyspace Configuration window, on the Coding Standards & Code Metrics pane, select the check box Check MISRA C:2012 (Polyspace Bug Finder) and from the drop-down list, select single-unit-rules. Now, Polyspace checks only the MISRA C:2012 rules that are applicable to a single unit.

  6. Save and close the Polyspace configuration window.

  7. Rerun the analysis with the new configuration.

    The rules Polyspace showed previously were found because the model was analyzed by itself. When you limited the rules Polyspace checked to the single-unit subset, only two violations were found.

When this model is integrated with its parent model, you can add the rest of the MISRA C:2012 rules.

Generate Report

To demonstrate compliance with MISRA C:2012 and report on your generated code metrics, you must export your results. This section shows you how to generate a report after the analysis. If you want to generate a report every time you run an analysis, see Generate report (Polyspace Bug Finder).

  1. If they are not open already, open your results in the Polyspace environment.

  2. From the toolbar, select Reporting > Run Report.

  3. Select BugFinderSummary as your report type.

  4. Click Run Report.

    The report is saved in the same folder as your results.

  5. To open the report, select Reporting > Open Report.

Related Topics