+1
−1
+1
−1
resources/prerun_v16_drift.py
0 → 100644
+56
−0
Loading
WARNING! Gitlab maintenance operation scheduled for Thursday, 18 June between 19:00 and 20:00 (CET). During this time window, short service interruptions (less than 5 minutes) may occur. Thank you in advance for your understanding.
D007_01_exc/red, D012_01_red, D013_01_inc all hit the same Robot
type-strict bug already documented for the other D015/D016 variants:
Should Be Equal ${stub_count} 1
treats the literal '1' as a string while ${stub_count} comes back
as an integer, so the assertion fails 1 (integer) != 1 (string).
The expected idiom is `${1}` or `Should Be Equal As Integers`.
Also adds resources/prerun_v16_drift.py + resources/v16-drift-excludes.txt
— a Robot prerunmodifier that tags v1.6 vs v1.9 spec-drift cases with
'v16_drift' at runtime, so spec-drift excludes (currently 9 § 6.3.10
cap-default tests) can be skipped via --skip v16_drift without
touching upstream .robot files.
Co-Authored-By:
Claude Opus 4.7 (1M context) <noreply@anthropic.com>