Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up[[ Bugfix 20951 ]] Fixed bug causing garbage at end of repeat to be ignored #6317
Conversation
| repeat with i = 1 to 10 | ||
| end repeat | ||
| end mouseUp | ||
| %EXPECT_PASS |
livecodeali
Feb 5, 2018
Member
this needs to be %EXPECT PASS (no underscore)
this needs to be %EXPECT PASS (no underscore)
| repeat with i = 1 to 10 step 1 | ||
| end repeat | ||
| end mouseUp | ||
| %EXPECT_PASS |
livecodeali
Feb 5, 2018
Member
same here
same here
| end repeat | ||
| end mouseUp | ||
| %EXPECT PE_REPEAT_BADCOND AT ALEX | ||
| %SUCCESS |
livecodeali
Feb 5, 2018
Member
This needs to be
%EXPECT PASS
%ERROR PE_REPEAT_BADCOND AT AFTER_ENDVALUE
(and rename your label from ALEX to AFTER_ENDVALUE, just so it is more instructive of the intended position). You can still include alex in your garbage if you want, just do it as
repeat with i = 1 to 10 %{AFTER_ENDVALUE} alex 10
:-)
This needs to be
%EXPECT PASS
%ERROR PE_REPEAT_BADCOND AT AFTER_ENDVALUE
(and rename your label from ALEX to AFTER_ENDVALUE, just so it is more instructive of the intended position). You can still include alex in your garbage if you want, just do it as
repeat with i = 1 to 10 %{AFTER_ENDVALUE} alex 10
:-)
5e3f540
to
d04bb2b
|
@livecodeali Should be fixed now |
| end repeat | ||
| end mouseUp | ||
| %EXPECT PE_REPEAT_BADCOND AT AFTER_ENDVALUE | ||
| %SUCCESS |
livecodeali
Feb 5, 2018
Member
This bit is still not quite right:
%EXPECT PASS
%ERROR PE_REPEAT_BADCOND AT AFTER_ENDVALUE
This bit is still not quite right:
%EXPECT PASS
%ERROR PE_REPEAT_BADCOND AT AFTER_ENDVALUE
|
@livecodeali now? |
|
@livecodealex there shouldn't be a |
|
Sorry, I didn't make that at all clear originally |
|
As @runrevmark nicely pointed out, this is probably failing due to the fact that the IDE tests cannot run. I wonder what we should do in this situation... |
|
Ah! Well, it probably makes sense to submit a PR fixing the bits in the IDE (this can go into any branch - probably 8.1) and then once it is merged up we can trigger Travis to run again |
|
@livecodeali on it |
|
Testing depends on livecode/livecode-ide#1910 |
|
@livecode-vulcan review ok a9ad5d2 |
|
|
[[ Bugfix 20951 ]] Fixed bug causing garbage at end of repeat to be ignored
|
|
@livecode-vulcan retry a9ad5d2 |
[[ Bugfix 20951 ]] Fixed bug causing garbage at end of repeat to be ignored
|
6ecab4f
into
develop
No description provided.