about summary refs log tree commit diff
path: root/src/test/run-pass/native-dupe.rs
AgeCommit message (Collapse)AuthorLines
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-19/+0
2012-02-03Remove experimental GC codeMarijn Haverbeke-4/+4
It's been sitting unused long enough to have bitrotted completely.
2012-02-02rt: Remove task pinning. Does nothingBrian Anderson-4/+4
2011-11-16Use attributes for native module ABI and link nameHaitao Li-2/+6
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-14xfail-fast run-pass/native-dupe.rsBrian Anderson-0/+3
This test calls the task pin function which has side effects and causes other tests to lock.
2011-11-15rustllvm: Add a GetOrInsertFunction wrapperHaitao Li-0/+12
Fixes issue #1161 Test-case-by: Brian Anderson <banderson@mozilla.com> Signed-off-by: Haitao Li <lihaitao@gmail.com>