Skip to content

Commit

Permalink
NOTE output diffs.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@87071 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
hornik committed Aug 29, 2024
1 parent 04f9906 commit ecfa74b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/library/tools/R/check.R
Original file line number Diff line number Diff line change
Expand Up @@ -4622,7 +4622,9 @@ add_dummies <- function(dir, Log)
## check o/p might be in a different encoding.
lines <- readLines(logf, warn = FALSE)
if(any(grepl("Running R code.*times elapsed time",
lines, useBytes = TRUE)))
lines, useBytes = TRUE)) ||
any(startsWith(lines, " Comparing") &
!endsWith(lines, "... OK")))
any <- TRUE
}
if(any) noteLog(Log) else resultLog(Log, "OK")
Expand Down

0 comments on commit ecfa74b

Please sign in to comment.