about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-05-19 12:31:08 +0900
committerTaiki Endo <te316e89@gmail.com>2019-05-19 12:31:08 +0900
commitb53d839b239d8fcf4cddfbd565ce5a8836217d5c (patch)
tree01070625ca6a6dcc4ed210cae35b6abfeeca8548
parent548add7f61bfcbe3bea3f5ccefb53c84da8fefe4 (diff)
downloadrust-b53d839b239d8fcf4cddfbd565ce5a8836217d5c.tar.gz
rust-b53d839b239d8fcf4cddfbd565ce5a8836217d5c.zip
Move arbitrary_self_types's tests into ui/self
-rw-r--r--src/test/ui/self/arbitrary-self-types-not-object-safe.rs (renamed from src/test/ui/arbitrary-self-types-not-object-safe.rs)0
-rw-r--r--src/test/ui/self/arbitrary-self-types-not-object-safe.stderr (renamed from src/test/ui/arbitrary-self-types-not-object-safe.stderr)0
-rw-r--r--src/test/ui/self/arbitrary_self_types_pointers_and_wrappers.rs (renamed from src/test/run-pass/arbitrary_self_types_pointers_and_wrappers.rs)1
-rw-r--r--src/test/ui/self/arbitrary_self_types_raw_pointer_struct.rs (renamed from src/test/run-pass/self/arbitrary_self_types_raw_pointer_struct.rs)0
-rw-r--r--src/test/ui/self/arbitrary_self_types_raw_pointer_trait.rs (renamed from src/test/run-pass/self/arbitrary_self_types_raw_pointer_trait.rs)0
-rw-r--r--src/test/ui/self/arbitrary_self_types_silly.rs (renamed from src/test/run-pass/self/arbitrary_self_types_silly.rs)0
-rw-r--r--src/test/ui/self/arbitrary_self_types_stdlib_pointers.rs (renamed from src/test/run-pass/arbitrary_self_types_stdlib_pointers.rs)1
-rw-r--r--src/test/ui/self/arbitrary_self_types_struct.rs (renamed from src/test/run-pass/self/arbitrary_self_types_struct.rs)0
-rw-r--r--src/test/ui/self/arbitrary_self_types_trait.rs (renamed from src/test/run-pass/self/arbitrary_self_types_trait.rs)0
-rw-r--r--src/test/ui/self/arbitrary_self_types_unsized_struct.rs (renamed from src/test/run-pass/self/arbitrary_self_types_unsized_struct.rs)0
10 files changed, 2 insertions, 0 deletions
diff --git a/src/test/ui/arbitrary-self-types-not-object-safe.rs b/src/test/ui/self/arbitrary-self-types-not-object-safe.rs
index 2c1fd937a65..2c1fd937a65 100644
--- a/src/test/ui/arbitrary-self-types-not-object-safe.rs
+++ b/src/test/ui/self/arbitrary-self-types-not-object-safe.rs
diff --git a/src/test/ui/arbitrary-self-types-not-object-safe.stderr b/src/test/ui/self/arbitrary-self-types-not-object-safe.stderr
index dacab1222ab..dacab1222ab 100644
--- a/src/test/ui/arbitrary-self-types-not-object-safe.stderr
+++ b/src/test/ui/self/arbitrary-self-types-not-object-safe.stderr
diff --git a/src/test/run-pass/arbitrary_self_types_pointers_and_wrappers.rs b/src/test/ui/self/arbitrary_self_types_pointers_and_wrappers.rs
index 6904c29111e..65fec3becac 100644
--- a/src/test/run-pass/arbitrary_self_types_pointers_and_wrappers.rs
+++ b/src/test/ui/self/arbitrary_self_types_pointers_and_wrappers.rs
@@ -1,3 +1,4 @@
+// run-pass
 #![feature(arbitrary_self_types, unsize, coerce_unsized, dispatch_from_dyn)]
 #![feature(rustc_attrs)]
 
diff --git a/src/test/run-pass/self/arbitrary_self_types_raw_pointer_struct.rs b/src/test/ui/self/arbitrary_self_types_raw_pointer_struct.rs
index 0eab7617f7a..0eab7617f7a 100644
--- a/src/test/run-pass/self/arbitrary_self_types_raw_pointer_struct.rs
+++ b/src/test/ui/self/arbitrary_self_types_raw_pointer_struct.rs
diff --git a/src/test/run-pass/self/arbitrary_self_types_raw_pointer_trait.rs b/src/test/ui/self/arbitrary_self_types_raw_pointer_trait.rs
index acbe896eebe..acbe896eebe 100644
--- a/src/test/run-pass/self/arbitrary_self_types_raw_pointer_trait.rs
+++ b/src/test/ui/self/arbitrary_self_types_raw_pointer_trait.rs
diff --git a/src/test/run-pass/self/arbitrary_self_types_silly.rs b/src/test/ui/self/arbitrary_self_types_silly.rs
index fb5f9012b18..fb5f9012b18 100644
--- a/src/test/run-pass/self/arbitrary_self_types_silly.rs
+++ b/src/test/ui/self/arbitrary_self_types_silly.rs
diff --git a/src/test/run-pass/arbitrary_self_types_stdlib_pointers.rs b/src/test/ui/self/arbitrary_self_types_stdlib_pointers.rs
index 9f6a647a07b..29563fbbd86 100644
--- a/src/test/run-pass/arbitrary_self_types_stdlib_pointers.rs
+++ b/src/test/ui/self/arbitrary_self_types_stdlib_pointers.rs
@@ -1,3 +1,4 @@
+// run-pass
 #![feature(arbitrary_self_types)]
 #![feature(rustc_attrs)]
 
diff --git a/src/test/run-pass/self/arbitrary_self_types_struct.rs b/src/test/ui/self/arbitrary_self_types_struct.rs
index cf62cd3a4e6..cf62cd3a4e6 100644
--- a/src/test/run-pass/self/arbitrary_self_types_struct.rs
+++ b/src/test/ui/self/arbitrary_self_types_struct.rs
diff --git a/src/test/run-pass/self/arbitrary_self_types_trait.rs b/src/test/ui/self/arbitrary_self_types_trait.rs
index fb06344df7e..fb06344df7e 100644
--- a/src/test/run-pass/self/arbitrary_self_types_trait.rs
+++ b/src/test/ui/self/arbitrary_self_types_trait.rs
diff --git a/src/test/run-pass/self/arbitrary_self_types_unsized_struct.rs b/src/test/ui/self/arbitrary_self_types_unsized_struct.rs
index b78223fd57c..b78223fd57c 100644
--- a/src/test/run-pass/self/arbitrary_self_types_unsized_struct.rs
+++ b/src/test/ui/self/arbitrary_self_types_unsized_struct.rs