1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: make v test-cleancode test everything by default (#10050)

This commit is contained in:
Delyan Angelov
2021-05-08 13:32:29 +03:00
committed by GitHub
parent cba2cb6b9c
commit 8a380f4699
132 changed files with 3230 additions and 3440 deletions

View File

@ -12,7 +12,7 @@ fn cmp(a f32, b f32) bool {
fn test_ortho() {
projection := glm.ortho(0, 200, 400, 0)
$if debug {
println(unsafe {projection.data[0]})
println(unsafe { projection.data[0] })
}
unsafe {
assert cmp(projection.data[0], 0.01)
@ -73,7 +73,7 @@ fn test_rotate() {
m2 = glm.rotate(1, glm.vec3(0, 1, 0), m2)
mut same := true
for i in 0 .. 15 {
if unsafe {m1.data[i]} != unsafe {m2.data[i]} {
if unsafe { m1.data[i] } != unsafe { m2.data[i] } {
same = false
}
}
@ -150,6 +150,6 @@ fn test_mult1() {
b := glm.Mat4{bdata}
a = glm.mult(a, b)
for i in 0 .. 15 {
assert unsafe {a.data[i]} == unsafe {expected[i]}
assert unsafe { a.data[i] } == unsafe { expected[i] }
}
}