about summary refs log tree commit diff
path: root/src/test/run-pass/binops.rs
AgeCommit message (Collapse)AuthorLines
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+1
2013-04-29librustc: Rename `reinterpret_cast` to `transmute_copy` and remove the intrinsicPatrick Walton-5/+5
2013-04-29librustc: Remove `ptr::addr_of`.Patrick Walton-2/+2
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-46/+46
2013-03-22test: replace uses of old deriving attribute with new oneAndrew Paseltiner-1/+1
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-46/+46
2013-03-07librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. ↵Patrick Walton-5/+7
rs=deexterning
2013-02-22test: De-mut the test suite. rs=demutingPatrick Walton-11/+5
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2013-01-30test: Remove export from the tests, language, and libraries. rs=deexportingPatrick Walton-3/+2
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-12/+14
2013-01-07test: Fix check-fast for resolve changes. rs=bustagePatrick Walton-5/+5
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-8/+5
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-11-19rustc: Implement explicit self for Eq and Ord. r=graydonPatrick Walton-3/+3
2012-10-01Move over to calling ptr::addr_ofTim Chevalier-2/+2
Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that.
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-3/+3
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-6/+6
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-2/+2
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+1
2012-09-06Remove struct ctorsBrian Anderson-1/+7
2012-09-05test: "import" -> "use"Patrick Walton-3/+1
2012-09-01Demode reinterpret_castBrian Anderson-5/+5
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-51/+6
2012-08-27Camel case various core constructorsBrian Anderson-5/+5
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-2/+2
2012-08-17Remove the class keywordBrian Anderson-1/+1
2012-08-15Convert more core types to camel caseBrian Anderson-1/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-2/+2
2012-07-17finish fixing broken un-unsupervise windows testsBen Blum-2/+2
2012-07-17Change all test/run-pass uses of rustrt::unsupervise() to something elseBen Blum-3/+3
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-2/+2
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.
2012-06-25Comment out the *right* part of the test failing due to issue #2724.Michael Sullivan-3/+3
2012-06-25Comment out a failing part of a test; this is Issue #2724.Michael Sullivan-1/+2
2012-06-25Finish compare glue for classesTim Chevalier-4/+24
This tests == and !=. I don't know what <, >, etc. should do. Closes #2601
2012-06-14Comments only: annotate FIXMEs in testsTim Chevalier-1/+1
2012-05-22Get rid of the >>> operator and make >> logical or arithmetic depending on ↵Michael Sullivan-1/+0
the signedness. Closes #2417.
2012-02-20core: New task APIBrian Anderson-11/+0
2012-02-05test: Resolve some FIXMEsBrian Anderson-7/+16
2012-02-03Remove experimental GC codeMarijn Haverbeke-3/+1
It's been sitting unused long enough to have bitrotted completely.
2012-01-13Remove tests for objs, adjust tests that use objsMarijn Haverbeke-24/+0
2012-01-06port over the tests to use the new APINiko Matsakis-3/+3
2011-12-16implement #[nolink]; deprecate #[link_name = ""]; note in stdlib to remove ↵Graham Fawcett-1/+1
empty link_name. Can't remove them from stdlib until the snapshotted compiler supports #[nolink].
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-3/+3
2011-11-16Use attributes for native module ABI and link nameHaitao Li-1/+3
This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547
2011-11-09Add "cdecl" as synonym for "c-stack-cdecl"Brian Anderson-1/+1