During the work to get model-test-long-with-coverage compatible for v5, a value error was raised with the new toolchain:
ValueError: invalid literal for int() with base 10: 'executed'.
This is most likely caused by differences in compiler or tool versions that caused the string to be parsed instead of a numeric value.
The goal of this ticket is to investigate the root cause of the failure and update the test to ensure compatibility with the v5 toolchain.
Issue
While updating model-test-long-with-coverage for v5 compatibility, the following error was encountered with the new toolchain:
ValueError: invalid literal for int() with base 10: 'executed'.
{{ }}
This error suggests that a string ('executed') is being parsed as an integer, likely due to differences in compiler or tool versions affecting the values that are parsed.
Goal
- Investigate the root cause of this failure.
- Identify whether the issue stems from a change in compiler behavior, a tool version mismatch, or incorrect assumptions in the test code.
- Update the test to ensure compatibility with the v5 toolchain.
- is related to
-
WT-14014 Try the new v5 toolchain
-
- Closed
-