tests: mark more tests as fixed
parent
9278a0cfba
commit
77679d9650
|
@ -31,8 +31,6 @@ const (
|
|||
|
||||
'vlib/v/tests/live_test.v', // Linux & Solaris only; since live does not actually work for now with v2, just skip
|
||||
'vlib/v/tests/asm_test.v', // skip everywhere for now, works on linux with cc != tcc
|
||||
'vlib/sqlite/sqlite_test.v', // works only on ubuntu with installed sqlite
|
||||
'vlib/clipboard/clipboard_test.v', // needs code changes to make it compile with v2
|
||||
]
|
||||
skip_on_linux = []string
|
||||
skip_on_non_linux = []string
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
import sqlite
|
||||
|
||||
fn test_sqlite() {
|
||||
$if !linux {
|
||||
return
|
||||
}
|
||||
db := sqlite.connect(':memory:')
|
||||
db.exec("drop table if exists users")
|
||||
db.exec("create table users (id integer primary key, name text default '');")
|
||||
|
|
|
@ -439,7 +439,7 @@ fn (mut g Gen) fn_decl(it ast.FnDecl) {
|
|||
g.register_function_address(it.name)
|
||||
g.push(.rbp)
|
||||
// g.write32(SEVENS)
|
||||
g.sub32(.rsp, 0x10)
|
||||
// g.sub32(.rsp, 0x10)
|
||||
}
|
||||
for arg in it.args {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue