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

tests: fix x64 test

This commit is contained in:
Alexander Medvednikov 2020-04-24 05:26:29 +00:00
parent d455606037
commit c30c76c285
2 changed files with 3 additions and 3 deletions

View File

@ -46,6 +46,6 @@ fn args() {
fn main() {
test()
//loop()
args()
loop()
//args()
}

View File

@ -30,7 +30,7 @@ fn test_x64() {
full_test_path := os.real_path(test)
println('x.v: $wrkdir/x.v')
os.system('cp ${dir}/${test} $wrkdir/x.v') // cant run .vv file
x := os.exec('$vexe -o exe -x64 $wrkdir/x.v') or {
os.exec('$vexe -o exe -x64 $wrkdir/x.v') or {
bench.fail()
eprintln(bench.step_message_fail('x64 $test failed'))
continue