Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 11, 2011
1 parent 861d0b6 commit 89f424c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 49 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Version: 1.7.3
Author: P. Aboyoun, H. Pages and M. Lawrence
Maintainer: Bioconductor Package Maintainer <[email protected]>
biocViews: Genetics, Sequencing, HighThroughputSequencing, Annotation
Depends: R (>= 2.8.0), methods, BiocGenerics, IRanges (>= 1.11.26)
Depends: R (>= 2.8.0), methods, BiocGenerics (>= 0.1.0), IRanges (>= 1.13.4)
Imports: methods, BiocGenerics, IRanges
LinkingTo: IRanges
Suggests: RUnit, BSgenome, GenomicFeatures, Rsamtools (>= 1.5.66),
Expand Down
49 changes: 1 addition & 48 deletions R/test_GenomicRanges_package.R
Original file line number Diff line number Diff line change
@@ -1,48 +1 @@
.test <- function(dir, pattern = "^test_.*\\.R$")
{
.failure_details <- function(result) {
res <- result[[1L]]
if (res$nFail > 0 || res$nErr > 0) {
Filter(function(x) length(x) > 0,
lapply(res$sourceFileResults,
function(fileRes) {
names(Filter(function(x) x$kind != "success",
fileRes))
}))
} else list()
}

if (missing(dir)) {
dir <- system.file("unitTests", package="GenomicRanges")
if (!length(dir)) {
dir <- system.file("UnitTests", package="GenomicRanges")
if (!length(dir))
stop("unable to find unit tests, no 'unitTests' dir")
}
}
require("RUnit", quietly=TRUE) || stop("RUnit package not found")
RUnit_opts <- getOption("RUnit", list())
RUnit_opts$verbose <- 0L
RUnit_opts$silent <- TRUE
RUnit_opts$verbose_fail_msg <- TRUE
options(RUnit = RUnit_opts)
suite <- defineTestSuite(name="GenomicRanges RUnit Tests", dirs=dir,
testFileRegexp=pattern,
rngKind="default",
rngNormalKind="default")
result <- runTestSuite(suite)
cat("\n\n")
printTextProtocol(result, showDetails=FALSE)
if (length(details <- .failure_details(result)) >0) {
cat("\nTest files with failing tests\n")
for (i in seq_along(details)) {
cat("\n ", basename(names(details)[[i]]), "\n")
for (j in seq_along(details[[i]])) {
cat(" ", details[[i]][[j]], "\n")
}
}
cat("\n\n")
stop("unit tests failed for package GenomicRanges")
}
result
}
.test <- function() BiocGenerics:::testPackage("GenomicRanges")

0 comments on commit 89f424c

Please sign in to comment.