about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-09-13 08:39:11 +0000
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-09-15 21:17:21 +0000
commitf9a08cc9821a442380d15096e3d245c32617eea7 (patch)
treeba4d158e6fcce8c0a071d9a2997b9f111c0152f8
parent2abdc8805cf803ea53e96ca7ad44de3697fb7183 (diff)
downloadrust-f9a08cc9821a442380d15096e3d245c32617eea7.tar.gz
rust-f9a08cc9821a442380d15096e3d245c32617eea7.zip
Remove irrelevant test.
-rw-r--r--src/test/compile-fail-fulldeps/auxiliary/macro_crate_MacroRulesTT.rs26
-rw-r--r--src/test/compile-fail-fulldeps/plugin-MacroRulesTT.rs18
2 files changed, 0 insertions, 44 deletions
diff --git a/src/test/compile-fail-fulldeps/auxiliary/macro_crate_MacroRulesTT.rs b/src/test/compile-fail-fulldeps/auxiliary/macro_crate_MacroRulesTT.rs
deleted file mode 100644
index 9e693fcc564..00000000000
--- a/src/test/compile-fail-fulldeps/auxiliary/macro_crate_MacroRulesTT.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-// force-host
-
-#![feature(plugin_registrar, rustc_private)]
-
-extern crate syntax;
-extern crate rustc;
-extern crate rustc_plugin;
-
-use syntax::parse::token;
-use syntax::ext::base::MacroRulesTT;
-use rustc_plugin::Registry;
-
-#[plugin_registrar]
-pub fn plugin_registrar(reg: &mut Registry) {
-    reg.register_syntax_extension(token::intern("bogus"), MacroRulesTT);
-}
diff --git a/src/test/compile-fail-fulldeps/plugin-MacroRulesTT.rs b/src/test/compile-fail-fulldeps/plugin-MacroRulesTT.rs
deleted file mode 100644
index e13ddd13f5d..00000000000
--- a/src/test/compile-fail-fulldeps/plugin-MacroRulesTT.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-// aux-build:macro_crate_MacroRulesTT.rs
-// ignore-stage1
-// error-pattern: plugin tried to register a new MacroRulesTT
-
-#![feature(plugin)]
-#![plugin(macro_crate_MacroRulesTT)]
-
-fn main() { }