mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
auto merge of #14145 : pnkfelix/rust/fsk-better-svh-via-visitor, r=alexcrichton
Teach SVH computation to ignore more implementation artifacts. In particular, this version of strict version hash (SVH) works much like the deriving(Hash)-based implementation did, except that it deliberately: 1. skips over content known not affect the generated crates, and, 2. uses a content-based hash for names instead of using the value of the `Name` index itself, which can differ depending on the order in which strings are interned (which in turn is affected by e.g. the presence of `--cfg` options on the command line). Fix #14132.
This commit is contained in:
commit
fedffa785e
@ -51,6 +51,7 @@ use std::hash::Hash;
|
||||
use std::hash::sip::SipState;
|
||||
use std::iter::range_step;
|
||||
use syntax::ast;
|
||||
use syntax::visit;
|
||||
|
||||
#[deriving(Clone, Eq)]
|
||||
pub struct Svh {
|
||||
@ -68,25 +69,28 @@ impl Svh {
|
||||
}
|
||||
|
||||
pub fn calculate(krate: &ast::Crate) -> Svh {
|
||||
// FIXME: see above for why this is wrong, it shouldn't just hash the
|
||||
// crate. Fixing this would require more in-depth analysis in
|
||||
// this function about what portions of the crate are reachable
|
||||
// in tandem with bug fixes throughout the rest of the compiler.
|
||||
//
|
||||
// Note that for now we actually exclude some top-level things
|
||||
// from the crate like the CrateConfig/span. The CrateConfig
|
||||
// contains command-line `--cfg` flags, so this means that the
|
||||
// stage1/stage2 AST for libstd and such is different hash-wise
|
||||
// when it's actually the exact same representation-wise.
|
||||
//
|
||||
// As a first stab at only hashing the relevant parts of the
|
||||
// AST, this only hashes the module/attrs, not the CrateConfig
|
||||
// field.
|
||||
//
|
||||
// FIXME (#14132): This is better than it used to be, but it still not
|
||||
// ideal. We now attempt to hash only the relevant portions of the
|
||||
// Crate AST as well as the top-level crate attributes. (However,
|
||||
// the hashing of the crate attributes should be double-checked
|
||||
// to ensure it is not incorporating implementation artifacts into
|
||||
// the hash that are not otherwise visible.)
|
||||
|
||||
// FIXME: this should use SHA1, not SipHash. SipHash is not built to
|
||||
// avoid collisions.
|
||||
let mut state = SipState::new();
|
||||
krate.module.hash(&mut state);
|
||||
|
||||
{
|
||||
let mut visit = svh_visitor::make(&mut state);
|
||||
visit::walk_crate(&mut visit, krate, ());
|
||||
}
|
||||
|
||||
// FIXME (#14132): This hash is still sensitive to e.g. the
|
||||
// spans of the crate Attributes and their underlying
|
||||
// MetaItems; we should make ContentHashable impl for those
|
||||
// types and then use hash_content. But, since all crate
|
||||
// attributes should appear near beginning of the file, it is
|
||||
// not such a big deal to be sensitive to their spans for now.
|
||||
krate.attrs.hash(&mut state);
|
||||
|
||||
let hash = state.result();
|
||||
@ -110,3 +114,390 @@ impl fmt::Show for Svh {
|
||||
f.pad(self.as_str())
|
||||
}
|
||||
}
|
||||
|
||||
// FIXME (#14132): Even this SVH computation still has implementation
|
||||
// artifacts: namely, the order of item declaration will affect the
|
||||
// hash computation, but for many kinds of items the order of
|
||||
// declaration should be irrelevant to the ABI.
|
||||
|
||||
mod svh_visitor {
|
||||
use syntax::ast;
|
||||
use syntax::ast::*;
|
||||
use syntax::codemap::Span;
|
||||
use syntax::parse::token;
|
||||
use syntax::print::pprust;
|
||||
use syntax::visit;
|
||||
use syntax::visit::{Visitor, FnKind};
|
||||
|
||||
use std::hash::Hash;
|
||||
use std::hash::sip::SipState;
|
||||
|
||||
pub struct StrictVersionHashVisitor<'a> {
|
||||
pub st: &'a mut SipState,
|
||||
}
|
||||
|
||||
pub fn make<'a>(st: &'a mut SipState) -> StrictVersionHashVisitor<'a> {
|
||||
StrictVersionHashVisitor { st: st }
|
||||
}
|
||||
|
||||
// To off-load the bulk of the hash-computation on deriving(Hash),
|
||||
// we define a set of enums corresponding to the content that our
|
||||
// crate visitor will encounter as it traverses the ast.
|
||||
//
|
||||
// The important invariant is that all of the Saw*Component enums
|
||||
// do not carry any Spans, Names, or Idents.
|
||||
//
|
||||
// Not carrying any Names/Idents is the important fix for problem
|
||||
// noted on PR #13948: using the ident.name as the basis for a
|
||||
// hash leads to unstable SVH, because ident.name is just an index
|
||||
// into intern table (i.e. essentially a random address), not
|
||||
// computed from the name content.
|
||||
//
|
||||
// With the below enums, the SVH computation is not sensitive to
|
||||
// artifacts of how rustc was invoked nor of how the source code
|
||||
// was laid out. (Or at least it is *less* sensitive.)
|
||||
|
||||
// This enum represents the different potential bits of code the
|
||||
// visitor could encounter that could affect the ABI for the crate,
|
||||
// and assigns each a distinct tag to feed into the hash computation.
|
||||
#[deriving(Hash)]
|
||||
enum SawAbiComponent<'a> {
|
||||
|
||||
// FIXME (#14132): should we include (some function of)
|
||||
// ident.ctxt as well?
|
||||
SawIdent(token::InternedString),
|
||||
SawStructDef(token::InternedString),
|
||||
|
||||
SawLifetimeRef(token::InternedString),
|
||||
SawLifetimeDecl(token::InternedString),
|
||||
|
||||
SawMod,
|
||||
SawViewItem,
|
||||
SawForeignItem,
|
||||
SawItem,
|
||||
SawDecl,
|
||||
SawTy,
|
||||
SawGenerics,
|
||||
SawFn,
|
||||
SawTyMethod,
|
||||
SawTraitMethod,
|
||||
SawStructField,
|
||||
SawVariant,
|
||||
SawExplicitSelf,
|
||||
SawPath,
|
||||
SawOptLifetimeRef,
|
||||
SawBlock,
|
||||
SawPat,
|
||||
SawLocal,
|
||||
SawArm,
|
||||
SawExpr(SawExprComponent<'a>),
|
||||
SawStmt(SawStmtComponent),
|
||||
}
|
||||
|
||||
/// SawExprComponent carries all of the information that we want
|
||||
/// to include in the hash that *won't* be covered by the
|
||||
/// subsequent recursive traversal of the expression's
|
||||
/// substructure by the visitor.
|
||||
///
|
||||
/// We know every Expr_ variant is covered by a variant because
|
||||
/// `fn saw_expr` maps each to some case below. Ensuring that
|
||||
/// each variant carries an appropriate payload has to be verified
|
||||
/// by hand.
|
||||
///
|
||||
/// (However, getting that *exactly* right is not so important
|
||||
/// because the SVH is just a developer convenience; there is no
|
||||
/// guarantee of collision-freedom, hash collisions are just
|
||||
/// (hopefully) unlikely.)
|
||||
#[deriving(Hash)]
|
||||
pub enum SawExprComponent<'a> {
|
||||
|
||||
SawExprLoop(Option<token::InternedString>),
|
||||
SawExprField(token::InternedString),
|
||||
SawExprBreak(Option<token::InternedString>),
|
||||
SawExprAgain(Option<token::InternedString>),
|
||||
|
||||
SawExprVstore,
|
||||
SawExprBox,
|
||||
SawExprVec,
|
||||
SawExprCall,
|
||||
SawExprMethodCall,
|
||||
SawExprTup,
|
||||
SawExprBinary(ast::BinOp),
|
||||
SawExprUnary(ast::UnOp),
|
||||
SawExprLit(ast::Lit_),
|
||||
SawExprCast,
|
||||
SawExprIf,
|
||||
SawExprWhile,
|
||||
SawExprMatch,
|
||||
SawExprFnBlock,
|
||||
SawExprProc,
|
||||
SawExprBlock,
|
||||
SawExprAssign,
|
||||
SawExprAssignOp(ast::BinOp),
|
||||
SawExprIndex,
|
||||
SawExprPath,
|
||||
SawExprAddrOf(ast::Mutability),
|
||||
SawExprRet,
|
||||
SawExprInlineAsm(&'a ast::InlineAsm),
|
||||
SawExprStruct,
|
||||
SawExprRepeat,
|
||||
SawExprParen,
|
||||
}
|
||||
|
||||
fn saw_expr<'a>(node: &'a Expr_) -> SawExprComponent<'a> {
|
||||
match *node {
|
||||
ExprVstore(..) => SawExprVstore,
|
||||
ExprBox(..) => SawExprBox,
|
||||
ExprVec(..) => SawExprVec,
|
||||
ExprCall(..) => SawExprCall,
|
||||
ExprMethodCall(..) => SawExprMethodCall,
|
||||
ExprTup(..) => SawExprTup,
|
||||
ExprBinary(op, _, _) => SawExprBinary(op),
|
||||
ExprUnary(op, _) => SawExprUnary(op),
|
||||
ExprLit(lit) => SawExprLit(lit.node.clone()),
|
||||
ExprCast(..) => SawExprCast,
|
||||
ExprIf(..) => SawExprIf,
|
||||
ExprWhile(..) => SawExprWhile,
|
||||
ExprLoop(_, id) => SawExprLoop(id.map(content)),
|
||||
ExprMatch(..) => SawExprMatch,
|
||||
ExprFnBlock(..) => SawExprFnBlock,
|
||||
ExprProc(..) => SawExprProc,
|
||||
ExprBlock(..) => SawExprBlock,
|
||||
ExprAssign(..) => SawExprAssign,
|
||||
ExprAssignOp(op, _, _) => SawExprAssignOp(op),
|
||||
ExprField(_, id, _) => SawExprField(content(id)),
|
||||
ExprIndex(..) => SawExprIndex,
|
||||
ExprPath(..) => SawExprPath,
|
||||
ExprAddrOf(m, _) => SawExprAddrOf(m),
|
||||
ExprBreak(id) => SawExprBreak(id.map(content)),
|
||||
ExprAgain(id) => SawExprAgain(id.map(content)),
|
||||
ExprRet(..) => SawExprRet,
|
||||
ExprInlineAsm(ref asm) => SawExprInlineAsm(asm),
|
||||
ExprStruct(..) => SawExprStruct,
|
||||
ExprRepeat(..) => SawExprRepeat,
|
||||
ExprParen(..) => SawExprParen,
|
||||
|
||||
// just syntactic artifacts, expanded away by time of SVH.
|
||||
ExprForLoop(..) => unreachable!(),
|
||||
ExprMac(..) => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
||||
/// SawStmtComponent is analogous to SawExprComponent, but for statements.
|
||||
#[deriving(Hash)]
|
||||
pub enum SawStmtComponent {
|
||||
SawStmtDecl,
|
||||
SawStmtExpr,
|
||||
SawStmtSemi,
|
||||
}
|
||||
|
||||
fn saw_stmt(node: &Stmt_) -> SawStmtComponent {
|
||||
match *node {
|
||||
StmtDecl(..) => SawStmtDecl,
|
||||
StmtExpr(..) => SawStmtExpr,
|
||||
StmtSemi(..) => SawStmtSemi,
|
||||
StmtMac(..) => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
||||
// Ad-hoc overloading between Ident and Name to their intern table lookups.
|
||||
trait InternKey { fn get_content(self) -> token::InternedString; }
|
||||
impl InternKey for Ident {
|
||||
fn get_content(self) -> token::InternedString { token::get_ident(self) }
|
||||
}
|
||||
impl InternKey for Name {
|
||||
fn get_content(self) -> token::InternedString { token::get_name(self) }
|
||||
}
|
||||
fn content<K:InternKey>(k: K) -> token::InternedString { k.get_content() }
|
||||
|
||||
// local short-hand eases writing signatures of syntax::visit mod.
|
||||
type E = ();
|
||||
|
||||
impl<'a> Visitor<E> for StrictVersionHashVisitor<'a> {
|
||||
|
||||
fn visit_mac(&mut self, macro: &Mac, e: E) {
|
||||
// macro invocations, namely macro_rules definitions,
|
||||
// *can* appear as items, even in the expanded crate AST.
|
||||
|
||||
if macro_name(macro).get() == "macro_rules" {
|
||||
// Pretty-printing definition to a string strips out
|
||||
// surface artifacts (currently), such as the span
|
||||
// information, yielding a content-based hash.
|
||||
|
||||
// FIXME (#14132): building temporary string is
|
||||
// expensive; a direct content-based hash on token
|
||||
// trees might be faster. Implementing this is far
|
||||
// easier in short term.
|
||||
let macro_defn_as_string =
|
||||
pprust::to_str(|pp_state| pp_state.print_mac(macro));
|
||||
macro_defn_as_string.hash(self.st);
|
||||
} else {
|
||||
// It is not possible to observe any kind of macro
|
||||
// invocation at this stage except `macro_rules!`.
|
||||
fail!("reached macro somehow: {}",
|
||||
pprust::to_str(|pp_state| pp_state.print_mac(macro)));
|
||||
}
|
||||
|
||||
visit::walk_mac(self, macro, e);
|
||||
|
||||
fn macro_name(macro: &Mac) -> token::InternedString {
|
||||
match ¯o.node {
|
||||
&MacInvocTT(ref path, ref _tts, ref _stx_ctxt) => {
|
||||
let s = path.segments.as_slice();
|
||||
assert_eq!(s.len(), 1);
|
||||
content(s[0].identifier)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn visit_struct_def(&mut self, s: &StructDef, ident: Ident,
|
||||
g: &Generics, _: NodeId, e: E) {
|
||||
SawStructDef(content(ident)).hash(self.st);
|
||||
visit::walk_generics(self, g, e.clone());
|
||||
visit::walk_struct_def(self, s, e)
|
||||
}
|
||||
|
||||
fn visit_variant(&mut self, v: &Variant, g: &Generics, e: E) {
|
||||
SawVariant.hash(self.st);
|
||||
// walk_variant does not call walk_generics, so do it here.
|
||||
visit::walk_generics(self, g, e.clone());
|
||||
visit::walk_variant(self, v, g, e)
|
||||
}
|
||||
|
||||
fn visit_opt_lifetime_ref(&mut self, _: Span, l: &Option<Lifetime>, env: E) {
|
||||
SawOptLifetimeRef.hash(self.st);
|
||||
// (This is a strange method in the visitor trait, in that
|
||||
// it does not expose a walk function to do the subroutine
|
||||
// calls.)
|
||||
match *l {
|
||||
Some(ref l) => self.visit_lifetime_ref(l, env),
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
|
||||
// All of the remaining methods just record (in the hash
|
||||
// SipState) that the visitor saw that particular variant
|
||||
// (with its payload), and continue walking as the default
|
||||
// visitor would.
|
||||
//
|
||||
// Some of the implementations have some notes as to how one
|
||||
// might try to make their SVH computation less discerning
|
||||
// (e.g. by incorporating reachability analysis). But
|
||||
// currently all of their implementations are uniform and
|
||||
// uninteresting.
|
||||
//
|
||||
// (If you edit a method such that it deviates from the
|
||||
// pattern, please move that method up above this comment.)
|
||||
|
||||
fn visit_ident(&mut self, _: Span, ident: Ident, _: E) {
|
||||
SawIdent(content(ident)).hash(self.st);
|
||||
}
|
||||
|
||||
fn visit_lifetime_ref(&mut self, l: &Lifetime, _: E) {
|
||||
SawLifetimeRef(content(l.name)).hash(self.st);
|
||||
}
|
||||
|
||||
fn visit_lifetime_decl(&mut self, l: &Lifetime, _: E) {
|
||||
SawLifetimeDecl(content(l.name)).hash(self.st);
|
||||
}
|
||||
|
||||
// We do recursively walk the bodies of functions/methods
|
||||
// (rather than omitting their bodies from the hash) since
|
||||
// monomorphization and cross-crate inlining generally implies
|
||||
// that a change to a crate body will require downstream
|
||||
// crates to be recompiled.
|
||||
fn visit_expr(&mut self, ex: &Expr, e: E) {
|
||||
SawExpr(saw_expr(&ex.node)).hash(self.st); visit::walk_expr(self, ex, e)
|
||||
}
|
||||
|
||||
fn visit_stmt(&mut self, s: &Stmt, e: E) {
|
||||
SawStmt(saw_stmt(&s.node)).hash(self.st); visit::walk_stmt(self, s, e)
|
||||
}
|
||||
|
||||
fn visit_view_item(&mut self, i: &ViewItem, e: E) {
|
||||
// Two kinds of view items can affect the ABI for a crate:
|
||||
// exported `pub use` view items (since that may expose
|
||||
// items that downstream crates can call), and `use
|
||||
// foo::Trait`, since changing that may affect method
|
||||
// resolution.
|
||||
//
|
||||
// The simplest approach to handling both of the above is
|
||||
// just to adopt the same simple-minded (fine-grained)
|
||||
// hash that I am deploying elsewhere here.
|
||||
SawViewItem.hash(self.st); visit::walk_view_item(self, i, e)
|
||||
}
|
||||
|
||||
fn visit_foreign_item(&mut self, i: &ForeignItem, e: E) {
|
||||
// FIXME (#14132) ideally we would incorporate privacy (or
|
||||
// perhaps reachability) somewhere here, so foreign items
|
||||
// that do not leak into downstream crates would not be
|
||||
// part of the ABI.
|
||||
SawForeignItem.hash(self.st); visit::walk_foreign_item(self, i, e)
|
||||
}
|
||||
|
||||
fn visit_item(&mut self, i: &Item, e: E) {
|
||||
// FIXME (#14132) ideally would incorporate reachability
|
||||
// analysis somewhere here, so items that never leak into
|
||||
// downstream crates (e.g. via monomorphisation or
|
||||
// inlining) would not be part of the ABI.
|
||||
SawItem.hash(self.st); visit::walk_item(self, i, e)
|
||||
}
|
||||
|
||||
fn visit_mod(&mut self, m: &Mod, _s: Span, _n: NodeId, e: E) {
|
||||
SawMod.hash(self.st); visit::walk_mod(self, m, e)
|
||||
}
|
||||
|
||||
fn visit_decl(&mut self, d: &Decl, e: E) {
|
||||
SawDecl.hash(self.st); visit::walk_decl(self, d, e)
|
||||
}
|
||||
|
||||
fn visit_ty(&mut self, t: &Ty, e: E) {
|
||||
SawTy.hash(self.st); visit::walk_ty(self, t, e)
|
||||
}
|
||||
|
||||
fn visit_generics(&mut self, g: &Generics, e: E) {
|
||||
SawGenerics.hash(self.st); visit::walk_generics(self, g, e)
|
||||
}
|
||||
|
||||
fn visit_fn(&mut self, fk: &FnKind, fd: &FnDecl, b: &Block, s: Span, _: NodeId, e: E) {
|
||||
SawFn.hash(self.st); visit::walk_fn(self, fk, fd, b, s, e)
|
||||
}
|
||||
|
||||
fn visit_ty_method(&mut self, t: &TypeMethod, e: E) {
|
||||
SawTyMethod.hash(self.st); visit::walk_ty_method(self, t, e)
|
||||
}
|
||||
|
||||
fn visit_trait_method(&mut self, t: &TraitMethod, e: E) {
|
||||
SawTraitMethod.hash(self.st); visit::walk_trait_method(self, t, e)
|
||||
}
|
||||
|
||||
fn visit_struct_field(&mut self, s: &StructField, e: E) {
|
||||
SawStructField.hash(self.st); visit::walk_struct_field(self, s, e)
|
||||
}
|
||||
|
||||
fn visit_explicit_self(&mut self, es: &ExplicitSelf, e: E) {
|
||||
SawExplicitSelf.hash(self.st); visit::walk_explicit_self(self, es, e)
|
||||
}
|
||||
|
||||
fn visit_path(&mut self, path: &Path, _: ast::NodeId, e: E) {
|
||||
SawPath.hash(self.st); visit::walk_path(self, path, e)
|
||||
}
|
||||
|
||||
fn visit_block(&mut self, b: &Block, e: E) {
|
||||
SawBlock.hash(self.st); visit::walk_block(self, b, e)
|
||||
}
|
||||
|
||||
fn visit_pat(&mut self, p: &Pat, e: E) {
|
||||
SawPat.hash(self.st); visit::walk_pat(self, p, e)
|
||||
}
|
||||
|
||||
fn visit_local(&mut self, l: &Local, e: E) {
|
||||
SawLocal.hash(self.st); visit::walk_local(self, l, e)
|
||||
}
|
||||
|
||||
fn visit_arm(&mut self, a: &Arm, e: E) {
|
||||
SawArm.hash(self.st); visit::walk_arm(self, a, e)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -61,7 +61,17 @@ pub fn generics_of_fn(fk: &FnKind) -> Generics {
|
||||
}
|
||||
}
|
||||
|
||||
/// Each method of the Visitor trait is a hook to be potentially
|
||||
/// overriden. Each method's default implementation recursively visits
|
||||
/// the substructure of the input via the corresponding `walk` method;
|
||||
/// e.g. the `visit_mod` method by default calls `visit::walk_mod`.
|
||||
///
|
||||
/// If you want to ensure that your code handles every variant
|
||||
/// explicitly, you need to override each method. (And you also need
|
||||
/// to monitor future changes to `Visitor` in case a new method with a
|
||||
/// new default implementation gets introduced.)
|
||||
pub trait Visitor<E: Clone> {
|
||||
|
||||
fn visit_ident(&mut self, _sp: Span, _ident: Ident, _e: E) {
|
||||
/*! Visit the idents */
|
||||
}
|
||||
@ -179,9 +189,9 @@ pub fn walk_local<E: Clone, V: Visitor<E>>(visitor: &mut V, local: &Local, env:
|
||||
}
|
||||
}
|
||||
|
||||
fn walk_explicit_self<E: Clone, V: Visitor<E>>(visitor: &mut V,
|
||||
explicit_self: &ExplicitSelf,
|
||||
env: E) {
|
||||
pub fn walk_explicit_self<E: Clone, V: Visitor<E>>(visitor: &mut V,
|
||||
explicit_self: &ExplicitSelf,
|
||||
env: E) {
|
||||
match explicit_self.node {
|
||||
SelfStatic | SelfValue | SelfUniq => {}
|
||||
SelfRegion(ref lifetime, _) => {
|
||||
|
37
src/test/auxiliary/svh-a-base.rs
Normal file
37
src/test/auxiliary/svh-a-base.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
37
src/test/auxiliary/svh-a-change-lit.rs
Normal file
37
src/test/auxiliary/svh-a-change-lit.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
0
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
39
src/test/auxiliary/svh-a-change-significant-cfg.rs
Normal file
39
src/test/auxiliary/svh-a-change-significant-cfg.rs
Normal file
@ -0,0 +1,39 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
#[cfg(some_flag)]
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
#[cfg(not(some_flag))]
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
37
src/test/auxiliary/svh-a-change-trait-bound.rs
Normal file
37
src/test/auxiliary/svh-a-change-trait-bound.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:V>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
37
src/test/auxiliary/svh-a-change-type-arg.rs
Normal file
37
src/test/auxiliary/svh-a-change-type-arg.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: i32) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
37
src/test/auxiliary/svh-a-change-type-ret.rs
Normal file
37
src/test/auxiliary/svh-a-change-type-ret.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> i64 {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> i32 {
|
||||
4
|
||||
}
|
37
src/test/auxiliary/svh-a-change-type-static.rs
Normal file
37
src/test/auxiliary/svh-a-change-type-static.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : i32 = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
38
src/test/auxiliary/svh-a-comment.rs
Normal file
38
src/test/auxiliary/svh-a-comment.rs
Normal file
@ -0,0 +1,38 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
// a comment does not affect the svh
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
40
src/test/auxiliary/svh-a-doc.rs
Normal file
40
src/test/auxiliary/svh-a-doc.rs
Normal file
@ -0,0 +1,40 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
// Adding some documentation does not affect the svh.
|
||||
|
||||
/// foo always returns three.
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
39
src/test/auxiliary/svh-a-macro.rs
Normal file
39
src/test/auxiliary/svh-a-macro.rs
Normal file
@ -0,0 +1,39 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
// a macro invocation in a function body does not affect the svh,
|
||||
// as long as it yields the same code.
|
||||
three!()
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
37
src/test/auxiliary/svh-a-no-change.rs
Normal file
37
src/test/auxiliary/svh-a-no-change.rs
Normal file
@ -0,0 +1,37 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
39
src/test/auxiliary/svh-a-redundant-cfg.rs
Normal file
39
src/test/auxiliary/svh-a-redundant-cfg.rs
Normal file
@ -0,0 +1,39 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
// cfg attribute does not affect the svh, as long as it yields the same code.
|
||||
#[cfg(not(an_unused_name))]
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
3
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
39
src/test/auxiliary/svh-a-whitespace.rs
Normal file
39
src/test/auxiliary/svh-a-whitespace.rs
Normal file
@ -0,0 +1,39 @@
|
||||
// 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.
|
||||
|
||||
//! The `svh-a-*.rs` files are all deviations from the base file
|
||||
//! svh-a-base.rs with some difference (usually in `fn foo`) that
|
||||
//! should not affect the strict version hash (SVH) computation
|
||||
//! (#14132).
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
#![crate_id = "a"]
|
||||
|
||||
macro_rules! three {
|
||||
() => { 3 }
|
||||
}
|
||||
|
||||
pub trait U {}
|
||||
pub trait V {}
|
||||
impl U for () {}
|
||||
impl V for () {}
|
||||
|
||||
static A_CONSTANT : int = 2;
|
||||
|
||||
pub fn foo<T:U>(_: int) -> int {
|
||||
|
||||
3
|
||||
|
||||
}
|
||||
|
||||
pub fn an_unused_name() -> int {
|
||||
4
|
||||
}
|
23
src/test/auxiliary/svh-b.rs
Normal file
23
src/test/auxiliary/svh-b.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
//! This is a client of the `a` crate defined in "svn-a-base.rs". The
|
||||
//! rpass and cfail tests (such as "run-pass/svh-add-comment.rs") use
|
||||
//! it by swapping in a different object code library crate built from
|
||||
//! some variant of "svn-a-base.rs", and then we are checking if the
|
||||
//! compiler properly ignores or accepts the change, based on whether
|
||||
//! the change could affect the downstream crate content or not
|
||||
//! (#14132).
|
||||
|
||||
#![crate_id = "b"]
|
||||
|
||||
extern crate a;
|
||||
|
||||
pub fn foo() { assert_eq!(a::foo::<()>(0), 3); }
|
32
src/test/auxiliary/svh-uta-base.rs
Normal file
32
src/test/auxiliary/svh-uta-base.rs
Normal file
@ -0,0 +1,32 @@
|
||||
// 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.
|
||||
|
||||
//! "compile-fail/svh-uta-trait.rs" is checking that we detect a
|
||||
//! change from `use foo::TraitB` to use `foo::TraitB` in the hash
|
||||
//! (SVH) computation (#14132), since that will affect method
|
||||
//! resolution.
|
||||
//!
|
||||
//! This is the upstream crate.
|
||||
|
||||
#![crate_id = "uta"]
|
||||
|
||||
mod traits {
|
||||
pub trait TraitA { fn val(&self) -> int { 2 } }
|
||||
pub trait TraitB { fn val(&self) -> int { 3 } }
|
||||
}
|
||||
|
||||
impl traits::TraitA for () {}
|
||||
impl traits::TraitB for () {}
|
||||
|
||||
pub fn foo<T>(_: int) -> int {
|
||||
use traits::TraitA;
|
||||
let v = ();
|
||||
v.val()
|
||||
}
|
32
src/test/auxiliary/svh-uta-change-use-trait.rs
Normal file
32
src/test/auxiliary/svh-uta-change-use-trait.rs
Normal file
@ -0,0 +1,32 @@
|
||||
// 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.
|
||||
|
||||
//! "compile-fail/svh-uta-trait.rs" is checking that we detect a
|
||||
//! change from `use foo::TraitB` to use `foo::TraitB` in the hash
|
||||
//! (SVH) computation (#14132), since that will affect method
|
||||
//! resolution.
|
||||
//!
|
||||
//! This is the upstream crate.
|
||||
|
||||
#![crate_id = "uta"]
|
||||
|
||||
mod traits {
|
||||
pub trait TraitA { fn val(&self) -> int { 2 } }
|
||||
pub trait TraitB { fn val(&self) -> int { 3 } }
|
||||
}
|
||||
|
||||
impl traits::TraitA for () {}
|
||||
impl traits::TraitB for () {}
|
||||
|
||||
pub fn foo<T>(_: int) -> int {
|
||||
use traits::TraitB;
|
||||
let v = ();
|
||||
v.val()
|
||||
}
|
22
src/test/auxiliary/svh-utb.rs
Normal file
22
src/test/auxiliary/svh-utb.rs
Normal file
@ -0,0 +1,22 @@
|
||||
// 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.
|
||||
|
||||
//! "compile-fail/svh-uta-trait.rs" is checking that we detect a
|
||||
//! change from `use foo::TraitB` to use `foo::TraitB` in the hash
|
||||
//! (SVH) computation (#14132), since that will affect method
|
||||
//! resolution.
|
||||
//!
|
||||
//! This is the downstream crate.
|
||||
|
||||
#![crate_id = "utb"]
|
||||
|
||||
extern crate uta;
|
||||
|
||||
pub fn foo() { assert_eq!(uta::foo::<()>(0), 3); }
|
24
src/test/compile-fail/svh-change-lit.rs
Normal file
24
src/test/compile-fail/svh-change-lit.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-change-lit.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
24
src/test/compile-fail/svh-change-significant-cfg.rs
Normal file
24
src/test/compile-fail/svh-change-significant-cfg.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-change-significant-cfg.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
24
src/test/compile-fail/svh-change-trait-bound.rs
Normal file
24
src/test/compile-fail/svh-change-trait-bound.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-change-trait-bound.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
24
src/test/compile-fail/svh-change-type-arg.rs
Normal file
24
src/test/compile-fail/svh-change-type-arg.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-change-type-arg.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
24
src/test/compile-fail/svh-change-type-ret.rs
Normal file
24
src/test/compile-fail/svh-change-type-ret.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-change-type-ret.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
24
src/test/compile-fail/svh-change-type-static.rs
Normal file
24
src/test/compile-fail/svh-change-type-static.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-change-type-static.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
27
src/test/compile-fail/svh-use-trait.rs
Normal file
27
src/test/compile-fail/svh-use-trait.rs
Normal file
@ -0,0 +1,27 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-uta-base.rs
|
||||
// aux-build:svh-utb.rs
|
||||
// aux-build:svh-uta-change-use-trait.rs
|
||||
|
||||
//! "compile-fail/svh-uta-trait.rs" is checking that we detect a
|
||||
//! change from `use foo::TraitB` to use `foo::TraitB` in the hash
|
||||
//! (SVH) computation (#14132), since that will affect method
|
||||
//! resolution.
|
||||
|
||||
extern crate uta;
|
||||
extern crate utb; //~ ERROR: found possibly newer version of crate `uta` which `utb` depends
|
||||
//~^ NOTE: perhaps this crate needs to be recompiled
|
||||
|
||||
fn main() {
|
||||
utb::foo()
|
||||
}
|
23
src/test/run-pass/svh-add-comment.rs
Normal file
23
src/test/run-pass/svh-add-comment.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-comment.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b;
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
23
src/test/run-pass/svh-add-doc.rs
Normal file
23
src/test/run-pass/svh-add-doc.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-doc.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b;
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
23
src/test/run-pass/svh-add-macro.rs
Normal file
23
src/test/run-pass/svh-add-macro.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-macro.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b;
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
23
src/test/run-pass/svh-add-nothing.rs
Normal file
23
src/test/run-pass/svh-add-nothing.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-no-change.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b;
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
23
src/test/run-pass/svh-add-redundant-cfg.rs
Normal file
23
src/test/run-pass/svh-add-redundant-cfg.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-redundant-cfg.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b;
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
23
src/test/run-pass/svh-add-whitespace.rs
Normal file
23
src/test/run-pass/svh-add-whitespace.rs
Normal file
@ -0,0 +1,23 @@
|
||||
// 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.
|
||||
|
||||
// note that these aux-build directives must be in this order
|
||||
// aux-build:svh-a-base.rs
|
||||
// aux-build:svh-b.rs
|
||||
// aux-build:svh-a-whitespace.rs
|
||||
|
||||
#![feature(macro_rules)]
|
||||
|
||||
extern crate a;
|
||||
extern crate b;
|
||||
|
||||
fn main() {
|
||||
b::foo()
|
||||
}
|
Loading…
Reference in New Issue
Block a user