tests: fix a typo
parent
ee2f1652b5
commit
4b329cb89d
|
@ -1,4 +1,4 @@
|
||||||
vlib/v/checker/tests/inout/void_fn_as_value.v:5:8: error: unknown funciton: x
|
vlib/v/checker/tests/inout/void_fn_as_value.v:5:8: error: unknown function: x
|
||||||
3| fn main() {
|
3| fn main() {
|
||||||
4| mut a := 'aa'
|
4| mut a := 'aa'
|
||||||
5| a += x('a','b')
|
5| a += x('a','b')
|
||||||
|
|
|
@ -4,7 +4,7 @@ import term
|
||||||
|
|
||||||
// TODO some logic copy pasted from valgrind_test.v and compiler_test.v, move to a module
|
// TODO some logic copy pasted from valgrind_test.v and compiler_test.v, move to a module
|
||||||
fn test_x64() {
|
fn test_x64() {
|
||||||
if false && os.user_os() != 'linux' {
|
if os.user_os() != 'linux' {
|
||||||
eprintln('x64 tests can only be run on Linux for now.')
|
eprintln('x64 tests can only be run on Linux for now.')
|
||||||
exit(0)
|
exit(0)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue