@devices Tag
The devices that are being tested can be specified by adding the @devices tag to a test function. The Test Summary Report uses this in the Available Tests section to give information on what devices a test function is testing. This tag is intended for circuit test functions. Device test functions are already linked to their associated device.
The @devices tag updates the Test Summary Report to show where the test is applied, and also applies the specified test coverage for the device to the overall reported statistics.
Devices should be listed after the @devices tag, separated by commas. If your project contains multiple boards, you should include the name of the board that the device is on as well (in the format boardName.deviceName). In the following example, the test function is marked as testing devices D1 and D2.
/// Flashes the LED and asks the user to confirm its operation via a message box. /// /// @param result Returns RESULT_PASS on success. /// @devices D1, D2 /// GLOBAL Test()(INT result) // ... END;
XJTAG v4.1.100