-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make index out of bounds more useful by including the 'bounds'. * fixes #9880 index out of bounds (remaining cases); revives #10228 * change err msg to: `index 3 not in 0 .. 1`
- Loading branch information
1 parent
352b52a
commit 4910608
Showing
11 changed files
with
88 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# imported by other modules, unlike helpers.nim which is included | ||
|
||
template formatErrorIndexBound*[T](i, a, b: T): string = | ||
"index out of bounds: (a: " & $a & ") <= (i: " & $i & ") <= (b: " & $b & ") " | ||
"index " & $i & " not in " & $a & " .. " & $b | ||
|
||
template formatErrorIndexBound*[T](i, n: T): string = | ||
"index out of bounds: (i: " & $i & ") <= (n: " & $n & ") " | ||
formatErrorIndexBound(i, 0, n) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
mode = ScriptMode.Verbose | ||
|
||
case paramStr(3): | ||
of "test1": | ||
#543 | ||
block: | ||
let s = "abc" | ||
discard s[len(s)] | ||
of "test2": | ||
#537 | ||
block: | ||
var s = "abc" | ||
s[len(s)] = 'd' | ||
of "test3": | ||
#588 | ||
block: | ||
let arr = ['a', 'b', 'c'] | ||
discard arr[len(arr)] | ||
of "test4": | ||
#588 | ||
block: | ||
var arr = ['a', 'b', 'c'] | ||
arr[len(arr)] = 'd' |
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,31 @@ | ||
import os, osproc, strutils | ||
|
||
const characters = "abcdefghijklmnopqrstuvwxyz" | ||
var s: string | ||
|
||
# # chcks.nim:23 | ||
# # test formatErrorIndexBound returns correct bounds | ||
block: | ||
s = characters | ||
try: | ||
discard s[0..999] | ||
except IndexError: | ||
let msg = getCurrentExceptionMsg() | ||
let expected = "index $# not in 0 .. $#" % [$len(s), $(len(s)-1)] | ||
doAssert msg.contains expected, $(msg, expected) | ||
|
||
block: | ||
try: | ||
discard paramStr(999) | ||
except IndexError: | ||
let msg = getCurrentExceptionMsg() | ||
let expected = "index 999 not in 0 .. 0" | ||
doAssert msg.contains expected, $(msg, expected) | ||
|
||
block: | ||
const nim = getCurrentCompilerExe() | ||
for i in 1..4: | ||
let (outp, errC) = execCmdEx("$# e tests/exception/testindexerroroutput.nims test$#" % [nim, $i]) | ||
let expected = "index 3 not in 0 .. 2" | ||
doAssert errC != 0 | ||
doAssert outp.contains expected, $(outp, errC, expected, i) |
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