Community
Participate
Working Groups
I created an Eunit test library named Skipped (passed, characterLen get same results). Then I generate the EUNIT driver I get unresolved EGL messages in program Skipped_pgm type BasicProgram {} function main() Skipped.invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end These issue happens in RBD as well. There are two ways to fix the code: 1. fully qualify the library function name program Skipped_pgm type BasicProgram {} function main() eunitgen.mine.Skipped.invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end 2. include the use library statement program Skipped_pgm type BasicProgram {} use Skipped; function main() invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end or program Skipped_pgm type BasicProgram {} use Skipped; function main() Skipped.invokeTheTest(); TestExecutionLib.writeResultSummary(3); end end
fixed, I now generate the fully qualified name for the library eunitgen.mine.Skipped.invokeTheTest();
resolved
verified with 201109222102
Closing this defect.