diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-12-17 16:10:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-17 09:10:56 +0100 |
commit | d83f66a24d990f2e4a135a4a64e1c464702b953d (patch) | |
tree | 79d7e691bbfcde637b03fd116367e1d8617e5c37 /tests/ccgbugs | |
parent | 7fa983f5e6b5f52a20e477e2443c8fdede244290 (diff) | |
download | Nim-d83f66a24d990f2e4a135a4a64e1c464702b953d.tar.gz |
fixes #21116; always mangles the param (#21121)
* fixes #21116; always mangles the param * idOrSig * fixes tests * Apply suggestions from code review
Diffstat (limited to 'tests/ccgbugs')
-rw-r--r-- | tests/ccgbugs/t21116.nim | 10 | ||||
-rw-r--r-- | tests/ccgbugs/tnoalias.nim | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/tests/ccgbugs/t21116.nim b/tests/ccgbugs/t21116.nim new file mode 100644 index 000000000..6418df539 --- /dev/null +++ b/tests/ccgbugs/t21116.nim @@ -0,0 +1,10 @@ +discard """ + target: "c cpp" + disabled: windows +""" +# bug #21116 +import std/os + +proc p(glob: string) = + for _ in walkFiles(glob): discard +p("dir/*") diff --git a/tests/ccgbugs/tnoalias.nim b/tests/ccgbugs/tnoalias.nim index f200992d7..96c3d390b 100644 --- a/tests/ccgbugs/tnoalias.nim +++ b/tests/ccgbugs/tnoalias.nim @@ -1,5 +1,5 @@ discard """ - ccodecheck: "\\i@'NI* NIM_NOALIAS field;' @'NIM_CHAR* NIM_NOALIAS x,' @'void* NIM_NOALIAS q'" + ccodecheck: "\\i@'NI* NIM_NOALIAS field;' @'NIM_CHAR* NIM_NOALIAS x__0qEngDE9aYoYsF8tWnyPacw,' @'void* NIM_NOALIAS q'" """ type |