summaryrefslogtreecommitdiff
path: root/samples/test
diff options
context:
space:
mode:
authorJohn Hodge <tpg@ucc.asn.au>2018-02-21 18:22:50 +0800
committerJohn Hodge <tpg@ucc.asn.au>2018-02-21 18:22:50 +0800
commit96fa368184bfcf84bf157a756396791eafc050fe (patch)
tree5b056cf6af28f6b2e50ee1dd1294e57bf700a540 /samples/test
parent277c6721480be163d8e7e4944acfe9c7c1d5278f (diff)
downloadmrust-96fa368184bfcf84bf157a756396791eafc050fe.tar.gz
Move local tests to use the test runner
Diffstat (limited to 'samples/test')
-rw-r--r--samples/test/for_underscore_drop.rs1
-rw-r--r--samples/test/scoping_rules.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/samples/test/for_underscore_drop.rs b/samples/test/for_underscore_drop.rs
index e590fee0..b6ed46d0 100644
--- a/samples/test/for_underscore_drop.rs
+++ b/samples/test/for_underscore_drop.rs
@@ -1,3 +1,4 @@
+// compile-flags: --test
struct DropFlag<'a>(&'a mut i32);
impl<'a> ::std::ops::Drop for DropFlag<'a>
diff --git a/samples/test/scoping_rules.rs b/samples/test/scoping_rules.rs
index 9878fd16..573fff21 100644
--- a/samples/test/scoping_rules.rs
+++ b/samples/test/scoping_rules.rs
@@ -1,3 +1,4 @@
+// compile-flags: --test
struct DropFlag<'a>(&'a ::std::cell::Cell<i32>);
impl<'a> ::std::ops::Drop for DropFlag<'a>