The R Project SVN R

Rev

Rev 32450 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32450 Rev 48613
Line 6... Line 6...
6
dev.off()
6
dev.off()
7
gc()
7
gc()
8
## segfaulted in 2.0.0
8
## segfaulted in 2.0.0
9
 
9
 
10
 
10
 
-
 
11
## Using a closed progress bar (PR#13709)
-
 
12
bar = winProgressBar(min = 0, max = 100, width = 300)
-
 
13
setWinProgressBar(bar, 25)
-
 
14
close(bar)
-
 
15
try(setWinProgressBar(bar, 50))
-
 
16
## segfaulted in 2.9.0
-
 
17
 
-
 
18
 
-
 
19
## trio peculiarity with %a, and incorrect fix
-
 
20
x <- sprintf("%a", 1:8)
-
 
21
y <- c("0x1p+0", "0x1p+1", "0x1.8p+1", "0x1p+2", "0x1.4p+2", "0x1.8p+2",
-
 
22
       "0x1.cp+2", "0x1p+3")
-
 
23
stopifnot(identical(x, y))