-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/LS24003289/bif-dec-with-time
- Loading branch information
Showing
12 changed files
with
197 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
rpgJavaInterpreter-core/src/test/resources/smeup/MUDRNRAPU00226.rpgle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
D £DBG_Str S 2 | ||
D B£SLOT E DS EXTNAME(B£SLOT0F) INZ | ||
|
||
D CSDS DS | ||
D CSNR 5S 0 | ||
|
||
D CSLOTS S LIKE(B£SLOT) DIM(200) INZ(*HIVAL) | ||
D CSLOTADS DS | ||
|
||
D CSLOTA LIKE(CSDS) INZ(*HIVAL) | ||
D DIM(%ELEM(CSLOTS)) ASCEND | ||
|
||
C EVAL £DBG_Str='ok' | ||
C £DBG_Str DSPLY |
9 changes: 9 additions & 0 deletions
9
rpgJavaInterpreter-core/src/test/resources/smeup/MUDRNRAPU00227.rpgle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
D £DBG_Str S 2 | ||
D CSDS DS | ||
D NUM 3S 0 | ||
D BOOL N 0 | ||
D STR LIKE(£DBG_Str) | ||
D NUM2 5S 0 | ||
|
||
D OUT S LIKE(CSDS) INZ(*HIVAL) | ||
C OUT DSPLY |
32 changes: 32 additions & 0 deletions
32
rpgJavaInterpreter-core/src/test/resources/smeup/MUDRNRAPU00228.rpgle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
D ut S 30 0 | ||
D dt S Z INZ(Z'2024-07-10-10.25.27.921456') | ||
D t S Z INZ(Z'1970-01-01-00.00.00.000000') | ||
|
||
C EVAL ut=%diff(dt:t:*mseconds) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*ms) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*seconds) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*s) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*minutes) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*mn) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*hours) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*h) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*days) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*d) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*months) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*m) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*years) | ||
C ut DSPLY | ||
C EVAL ut=%diff(dt:t:*y) | ||
C ut DSPLY |
13 changes: 13 additions & 0 deletions
13
rpgJavaInterpreter-core/src/test/resources/smeup/MUDRNRAPU00230.rpgle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
D £DBG_Str S 2 | ||
|
||
D $OavFU S Like(£OavFU) | ||
D $OavME S Like(£OavME) | ||
D §OavFU S Like(£OavFU) | ||
D §OavME S Like(£OavME) | ||
|
||
C *ENTRY PLIST | ||
C PARM £OAVFU 10 Funzione | ||
C PARM £OAVME 10 Metodo | ||
|
||
C EVAL £DBG_Str='ok' | ||
C £DBG_Str DSPLY |