Skip to content

Commit bc64125

Browse files
authoredDec 17, 2019
Exclude percent encoding from skeptic (#561)
* Exclude percent encoding from skeptic * Exclude tests that are affected by skeptic #111 * More failing tests exlcuded from Skeptic * add ignore to infostring
1 parent 084f51c commit bc64125

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed
 

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ target/
44
book/
55
*.swp
66
lines.txt
7+
.idea/

‎src/algorithms/randomness/rand-custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Randomly generates a tuple `(i32, bool, f64)` and variable of user defined type `Point`.
66
Implements the [`Distribution`] trait on type Point for [`Standard`] in order to allow random generation.
77

8-
```rust
8+
```rust,ignore
99
extern crate rand;
1010
1111
use rand::Rng;

‎src/algorithms/randomness/rand-dist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ generator [`rand::Rng`].
1111
The [distributions available are documented here][rand-distributions]. An example using the
1212
[`Normal`] distribution is shown below.
1313

14-
```rust
14+
```
1515
extern crate rand;
1616
1717
use rand::distributions::{Normal, Distribution};

‎src/algorithms/randomness/rand-passwd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Randomly generates a string of given length ASCII characters in the range `A-Z,
66
a-z, 0-9`, with [`Alphanumeric`] sample.
77

8-
```rust
8+
```rust,ignore
99
extern crate rand;
1010
1111
use rand::{thread_rng, Rng};

‎src/algorithms/randomness/rand-range.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Generates a random value within half-open `[0, 10)` range (not including `10`) with [`Rng::gen_range`].
66

7-
```rust
7+
```rust,ignore
88
extern crate rand;
99
1010
use rand::Rng;
@@ -20,7 +20,7 @@ fn main() {
2020
This has the same effect, but may be faster when repeatedly generating numbers
2121
in the same range.
2222

23-
```rust
23+
```rust,ignore
2424
extern crate rand;
2525
2626

‎src/concurrency/parallel/rayon-parallel-sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ values in parallel. Although [multiple options]
99
exist to sort an enumerable data type, [`par_sort_unstable`]
1010
is usually faster than [stable sorting] algorithms.
1111

12-
```rust
12+
```rust,ignore
1313
extern crate rand;
1414
extern crate rayon;
1515

‎src/encoding/string/percent-encode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Encode an input string with [percent-encoding] using the [`utf8_percent_encode`]
66
function from the `percent-encoding` crate. Then decode using the [`percent_decode`]
77
function.
88

9-
```rust
9+
```rust,ignore
1010
extern crate percent_encoding;
1111
1212
use percent_encoding::{utf8_percent_encode, percent_decode, AsciiSet, CONTROLS};

0 commit comments

Comments
 (0)
Please sign in to comment.