mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tests: fix a typo
This commit is contained in:
@@ -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)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user