Skip to content

Commit

Permalink
Rename long test names to be a bit shorter
Browse files Browse the repository at this point in the history
Helps to avoid hitting path limits on Windows
  • Loading branch information
alexcrichton committed Nov 30, 2017
1 parent 01c47c2 commit 7df4683
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Expand Up @@ -9,9 +9,9 @@
// except according to those terms.

// ignore-stage1
// aux-build:issue_16723_multiple_items_syntax_ext.rs
// aux-build:issue-16723.rs
#![feature(plugin)]
#![plugin(issue_16723_multiple_items_syntax_ext)]
#![plugin(issue_16723)]

multiple_items!();

Expand Down
Expand Up @@ -8,10 +8,10 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// aux-build:plugin_crate_outlive_expansion_phase.rs
// aux-build:outlive-expansion-phase.rs
// ignore-stage1

#![feature(plugin)]
#![plugin(plugin_crate_outlive_expansion_phase)]
#![plugin(outlive_expansion_phase)]

pub fn main() {}
Expand Up @@ -8,13 +8,13 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// aux-build:specialization_cross_crate_defaults.rs
// aux-build:cross_crates_defaults.rs

#![feature(specialization)]

extern crate specialization_cross_crate_defaults;
extern crate cross_crates_defaults;

use specialization_cross_crate_defaults::*;
use cross_crates_defaults::*;

struct LocalDefault;
struct LocalOverride;
Expand Down

0 comments on commit 7df4683

Please sign in to comment.