Skip to content

Commit 7a14eb0

Browse files
committed
builtin: move vlib/builtin/overflow/overflow_test.v to vlib/v/tests/builtin_overflow_test.v (reduce time for the common v test vlib/builtin)
1 parent f237f95 commit 7a14eb0

File tree

130 files changed

+33
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+33
-33
lines changed

vlib/builtin/overflow/overflow_test.v renamed to vlib/v/tests/builtin_overflow_test.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const vexe = @VEXE
99

1010
const vroot = os.real_path(@VMODROOT)
1111

12-
const testdata_folder = os.join_path(vroot, 'vlib', 'builtin', 'overflow', 'testdata')
12+
const testdata_folder = os.join_path(vroot, 'vlib/v/tests/testdata/builtin_overflow')
1313

1414
fn mm(s string) string {
1515
return term.colorize(term.magenta, s)
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mut x := i16(-32767)
22
println(x)
3-
x --
3+
x--
44
println(x)
5-
x --
5+
x--
66
println(x)
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mut x := i16(32766)
22
println(x)
3-
x ++
3+
x++
44
println(x)
5-
x ++
5+
x++
66
println(x)

0 commit comments

Comments
 (0)