Skip to content

Commit 4962f9d

Browse files
committed
Relaxed error pattern, and add test for SystemTime as well.
1 parent 83d14bd commit 4962f9d

4 files changed

+38
-2
lines changed

src/test/run-fail/issue-44216-add.rs src/test/run-fail/issue-44216-add-instant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern:overflow when
11+
// error-pattern:overflow
1212

1313
use std::time::{Instant, Duration};
1414

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// error-pattern:overflow
12+
13+
use std::time::{Duration, SystemTime};
14+
15+
fn main() {
16+
let now = SystemTime::now();
17+
let _ = now + Duration::from_secs(u64::max_value());
18+
}

src/test/run-fail/issue-44216-sub.rs src/test/run-fail/issue-44216-sub-instant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern:overflow when
11+
// error-pattern:overflow
1212

1313
use std::time::{Instant, Duration};
1414

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// error-pattern:overflow
12+
13+
use std::time::{Duration, SystemTime};
14+
15+
fn main() {
16+
let now = SystemTime::now();
17+
let _ = now - Duration::from_secs(u64::max_value());
18+
}

0 commit comments

Comments
 (0)