summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorflywind <xzsflywind@gmail.com>2021-03-29 23:54:28 +0800
committerGitHub <noreply@github.com>2021-03-29 17:54:28 +0200
commit7ad49950bd5ec05f145dc43ae35f51127ea76366 (patch)
treefd76576efa7259fa6163c77577017e50253398b0 /tests
parentd23a75776555b998ccee83fe2f2c498e2144ec86 (diff)
downloadNim-7ad49950bd5ec05f145dc43ae35f51127ea76366.tar.gz
[os:standalone]fix #14011 (#17564)
Diffstat (limited to 'tests')
-rw-r--r--tests/gc/panicoverride.nim14
-rw-r--r--tests/gc/tstandalone.nim14
2 files changed, 28 insertions, 0 deletions
diff --git a/tests/gc/panicoverride.nim b/tests/gc/panicoverride.nim
new file mode 100644
index 000000000..0f28b0b72
--- /dev/null
+++ b/tests/gc/panicoverride.nim
@@ -0,0 +1,14 @@
+
+proc printf(frmt: cstring) {.varargs, importc, header: "<stdio.h>", cdecl.}
+proc exit(code: int) {.importc, header: "<stdlib.h>", cdecl.}
+
+{.push stack_trace: off, profiler:off.}
+
+proc rawoutput(s: string) =
+  printf("%s\n", s)
+
+proc panic(s: string) {.noreturn.} =
+  rawoutput(s)
+  exit(1)
+
+{.pop.}
\ No newline at end of file
diff --git a/tests/gc/tstandalone.nim b/tests/gc/tstandalone.nim
new file mode 100644
index 000000000..41dad9ba4
--- /dev/null
+++ b/tests/gc/tstandalone.nim
@@ -0,0 +1,14 @@
+discard """
+  matrix: "--os:standalone --gc:none"
+  exitcode: 1
+  output: "value out of range"
+"""
+
+type
+  rangeType = range[0..1]
+
+var
+  r: rangeType = 0
+  i = 2
+
+r = rangeType(i)