Ticket #2158 (closed patch: done)
Appending error messages to IMCC error_message
Reported by: | Felipe | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | imcc | Version: | 3.5.0 |
Severity: | medium | Keywords: | |
Cc: | Language: | ||
Patch status: | Platform: | all |
Description
By reading the TODO comment in IMCC_warning() function I noticed that is needed a way to store the error message instead of printing whenever calling IMCC_warning().
So I changed the function to append the new error message supplied as argument to the already existent stored error message in the imcc->error_message variable.
Commits that made such changes: https://github.com/felipensp/parrot/commit/98c36de7870cb9412a5c4822fa31774fae79f3f3 https://github.com/felipensp/parrot/commit/c7107a5be72ecd2d9a1f91e2a86ae4fef3c32cb9 https://github.com/felipensp/parrot/commit/ddfdaee34ba23e454f20078dd295932aeeb99b1e
All tests successful. Files=393, Tests=13833, 475 wallclock secs ( 8.87 usr 1.69 sys + 387.03 cusr 44.61 csys = 442.20 CPU) Result: PASS
Thanks.