Skip to content

Commit e380ee9

Browse files
committed
remove whitespaces from rust-env directives
Signed-off-by: Shunpoco <[email protected]>
1 parent a8e75c5 commit e380ee9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/tools/miri/tests/panic/panic1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@rustc-env: RUST_BACKTRACE=1
1+
//@rustc-env:RUST_BACKTRACE=1
22
//@compile-flags: -Zmiri-disable-isolation
33

44
fn main() {

src/tools/miri/tests/pass/backtrace/backtrace-global-alloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@compile-flags: -Zmiri-disable-isolation
2-
//@rustc-env: RUST_BACKTRACE=1
2+
//@rustc-env:RUST_BACKTRACE=1
33

44
use std::alloc::System;
55
use std::backtrace::Backtrace;

src/tools/miri/tests/pass/backtrace/backtrace-std.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@compile-flags: -Zmiri-disable-isolation
2-
//@rustc-env: RUST_BACKTRACE=1
2+
//@rustc-env:RUST_BACKTRACE=1
33

44
use std::backtrace::Backtrace;
55

tests/rustdoc-ui/doctest/unparseable-doc-test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
33
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
44
//@ failure-status: 101
5-
//@ rustc-env: RUST_BACKTRACE=0
5+
//@ rustc-env:RUST_BACKTRACE=0
66

77
/// ```rust
88
/// let x = 7;

tests/ui/proc-macro/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//@ aux-build:env.rs
22
//@ run-pass
3-
//@ rustc-env: THE_CONST=1
3+
//@ rustc-env:THE_CONST=1
44
//@ compile-flags: -Zunstable-options --env-set THE_CONST=12 --env-set ANOTHER=4
55

66
#![crate_name = "foo"]

0 commit comments

Comments
 (0)