Last updated on 2019-03-14 00:46:47 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.14-377 | 10.16 | 77.08 | 87.24 | OK | |
r-devel-linux-x86_64-debian-gcc | 1.14-377 | 9.74 | 59.47 | 69.21 | OK | |
r-devel-linux-x86_64-fedora-clang | 1.14-377 | 110.51 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 1.14-377 | 100.73 | OK | |||
r-devel-windows-ix86+x86_64 | 1.14-377 | 25.00 | 161.00 | 186.00 | OK | |
r-patched-linux-x86_64 | 1.14-377 | 10.27 | 71.16 | 81.43 | OK | |
r-patched-solaris-x86 | 1.14-377 | 150.30 | ERROR | |||
r-release-linux-x86_64 | OK | |||||
r-release-windows-ix86+x86_64 | 1.14-377 | 31.00 | 195.00 | 226.00 | OK | |
r-release-osx-x86_64 | 1.14-377 | OK | ||||
r-oldrel-windows-ix86+x86_64 | 1.14-377 | 25.00 | 206.00 | 231.00 | OK | |
r-oldrel-osx-x86_64 | 1.14-377 | OK |
Version: 1.14-377
Check: tests
Result: ERROR
Running ‘as.edgelist_tests.R’
Running ‘general.tests.R’
Running ‘general.tests2.R’ [9s/16s]
Running ‘list.attribute.tests.R’
Running ‘misc_tests.R’
Running ‘network.access.test.R’
Running ‘network.battery.R’
Running ‘pathological.tests.R’
Running ‘plot_tests.R’
Running ‘plotflo.R’
Running ‘read.paj_tests.R’ [3s/34s]
Running ‘speedTests.R’ [16s/24s]
Running ‘vignette.R’
Running the tests in ‘tests/speedTests.R’ failed.
Complete output:
>
> # some really basic speed checks to help us know if we make changes that massively degrade performance
> require(network)
Loading required package: network
network: Classes for Relational Data
Version 1.14-377 created on 2019-03-04.
copyright (c) 2005, Carter T. Butts, University of California-Irvine
Mark S. Handcock, University of California -- Los Angeles
David R. Hunter, Penn State University
Martina Morris, University of Washington
Skye Bender-deMoll, University of Washington
For citation information, type citation("network").
Type help("network-package") to get started.
>
> init<-system.time(net<-network.initialize(100000))[3]
> setv<-system.time(set.vertex.attribute(net,"foo","bar"))[3]
> getv<-system.time(get.vertex.attribute(net,"foo"))[3]
> listv<-system.time(list.vertex.attributes(net))[3]
> adde<-system.time(add.edges(net,tail=1:99999,head=2:100000))[3]
> sete<-system.time(set.edge.attribute(net,"foo","bar"))[3]
> gete<-system.time(get.edge.attribute(net,"foo"))[3]
> liste<-system.time(list.edge.attributes(net))[3]
> addmoree<-system.time(add.edge(net,100000,1))[3]
> addmorev<-system.time(add.vertices(net,1))[3]
>
>
> # optionally compare to benchmarks saved in test folder to see if things have changed
> # benchmarks<-rbind(init,setv,getv,listv,adde,sete,gete,liste,addmoree,addmorev)
> # oldmarks<-read.table(file.choose(),header=TRUE,colClasses=c('character','numeric'))
> # all.equal(oldmarks[,1],benchmarks[,1],check.attributes=FALSE)
>
> # optionally save out benchmarks to test directory
> # write.table(benchmarks,file=file.choose())
>
> # some absolute thresholds
>
> if(init>5){
+ stop("initializing network for large number of vertices took much longer than expected")
+ }
Error: initializing network for large number of vertices took much longer than expected
Execution halted
Flavor: r-patched-solaris-x86