]> git.lizzy.rs Git - rust.git/commitdiff
Move qquote.rs from run-fail to run-fail-fulldeps
authorRyan Prichard <ryan.prichard@gmail.com>
Sun, 26 Apr 2015 01:31:23 +0000 (18:31 -0700)
committerRyan Prichard <ryan.prichard@gmail.com>
Sun, 26 Apr 2015 13:05:39 +0000 (06:05 -0700)
src/test/run-fail-fulldeps/qquote.rs [new file with mode: 0644]
src/test/run-fail/qquote.rs [deleted file]

diff --git a/src/test/run-fail-fulldeps/qquote.rs b/src/test/run-fail-fulldeps/qquote.rs
new file mode 100644 (file)
index 0000000..6ae2239
--- /dev/null
@@ -0,0 +1,44 @@
+// Copyright 2012-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.
+
+// ignore-cross-compile
+
+// error-pattern:expected identifier, found keyword `let`
+
+#![feature(quote, rustc_private)]
+
+extern crate syntax;
+
+use syntax::ast;
+use syntax::codemap::{self, DUMMY_SP};
+use syntax::parse;
+use syntax::print::pprust;
+
+fn main() {
+    let ps = syntax::parse::new_parse_sess();
+    let mut cx = syntax::ext::base::ExtCtxt::new(
+        &ps, vec![],
+        syntax::ext::expand::ExpansionConfig::default("qquote".to_string()));
+    cx.bt_push(syntax::codemap::ExpnInfo {
+        call_site: DUMMY_SP,
+        callee: syntax::codemap::NameAndSpan {
+            name: "".to_string(),
+            format: syntax::codemap::MacroBang,
+            allow_internal_unstable: false,
+            span: None,
+        }
+    });
+    let cx = &mut cx;
+
+    assert_eq!(pprust::expr_to_string(&*quote_expr!(&cx, 23)), "23");
+
+    let expr = quote_expr!(&cx, let x isize = 20;);
+    assert_eq!(pprust::expr_to_string(&*expr), "let x isize = 20;");
+}
diff --git a/src/test/run-fail/qquote.rs b/src/test/run-fail/qquote.rs
deleted file mode 100644 (file)
index 6ae2239..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2012-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.
-
-// ignore-cross-compile
-
-// error-pattern:expected identifier, found keyword `let`
-
-#![feature(quote, rustc_private)]
-
-extern crate syntax;
-
-use syntax::ast;
-use syntax::codemap::{self, DUMMY_SP};
-use syntax::parse;
-use syntax::print::pprust;
-
-fn main() {
-    let ps = syntax::parse::new_parse_sess();
-    let mut cx = syntax::ext::base::ExtCtxt::new(
-        &ps, vec![],
-        syntax::ext::expand::ExpansionConfig::default("qquote".to_string()));
-    cx.bt_push(syntax::codemap::ExpnInfo {
-        call_site: DUMMY_SP,
-        callee: syntax::codemap::NameAndSpan {
-            name: "".to_string(),
-            format: syntax::codemap::MacroBang,
-            allow_internal_unstable: false,
-            span: None,
-        }
-    });
-    let cx = &mut cx;
-
-    assert_eq!(pprust::expr_to_string(&*quote_expr!(&cx, 23)), "23");
-
-    let expr = quote_expr!(&cx, let x isize = 20;);
-    assert_eq!(pprust::expr_to_string(&*expr), "let x isize = 20;");
-}