fix runtime module test

pull/2293/head
Alexander Medvednikov 2019-10-11 14:16:02 +03:00
parent af46bf515f
commit 9193242a76
5 changed files with 25 additions and 12 deletions

View File

@ -1,13 +1 @@
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module runtime
#include <sys/sysinfo.h>
fn C.get_nprocs() int
pub fn nr_cpus() int {
return C.get_nprocs()
}

View File

@ -0,0 +1,13 @@
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module runtime
#include <sys/sysinfo.h>
fn C.get_nprocs() int
pub fn nr_cpus() int {
return C.get_nprocs()
}

View File

@ -0,0 +1,5 @@
module runtime
pub fn nr_cpus() int {
return 0
}

View File

@ -1,7 +1,9 @@
import runtime
fn test_nr_cpus() {
$if linux {
nr_cpus := runtime.nr_cpus()
println(nr_cpus)
assert nr_cpus > 0
}
}

View File

@ -0,0 +1,5 @@
module runtime
pub fn nr_cpus() int {
return 0
}