Skip to content

Commit

Permalink
[Tests] Added R920 to RuntimeTests
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertvanderHulst committed Apr 23, 2024
1 parent f8b8d9f commit 899f411
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/CompilerTests/Applications/R920/Prg/R920.prg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ FUNCTION Start( ) AS VOID
cVar := cVar:Replace(e"\t","")
? cVar
xAssert(cVar == "abcdef")
cVar := "123 ; // line continuation
456 ; && more
789"
cVar := cVar:Replace(" ","")
cVar := cVar:Replace(e"\t","")
? cVar
xAssert(cVar == "123456789")
RETURN


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ FUNCTION Start() AS INT
"R861", "R862", "R863", "R864", "R865", "R868", "R870", "R871", "R872", "R873", ;
"R875", "R876", "R878", "R879", "R883", "R884", "R885", "R886", "R888", "R889", ;
"R890", "R892", "R895", "R897", "R899", "R900", "R902", "R903", "R904", "R905",;
"R906", "R907", "R908", "R909", "R910", "R911", "R912", "R913", "R914", "R918", "R919";
"R906", "R907", "R908", "R909", "R910", "R911", "R912", "R913", "R914", "R918", "R919",;
"R920";
}

#ifdef GUI
Expand Down

0 comments on commit 899f411

Please sign in to comment.