about summary refs log tree commit diff
path: root/src/test/stdtest/sys.rs
AgeCommit message (Collapse)AuthorLines
2012-01-17libcore: Move core tests into libcoreBrian Anderson-53/+0
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-1/+1
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-1/+1
#debug.
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+3
2011-11-18stdlib: Add tests for sys::size_of and sys::align_ofBrian Anderson-0/+45
2011-10-24work around bug when calling c-stack-cdecl fns from outside crateNiko Matsakis-1/+3
In the main test, I call the wrapper instead of the native fn, as intended. I also added an xfail-test that exercises the broken code path. Will file a bug. Description of the broken code path: The code path is that when we look up the external identifier we go through trans_external_path() -> type_of_ty_param_kinds_and_ty() -> type_of_fn_from_ty() -> type_of_fn(), and type_of_fn() adds a lot of external parameters. Problem is, I guess, that we don't pass the native ABI (or even the fact that it's a native function!), just the types and kinds of the parameters.
2011-10-12continue to annotate functions as unsafe where neccessaryNiko Matsakis-1/+1
2011-09-02Reformat. Issue #855Brian Anderson-3/+1
2011-09-02Remove estrs and evecs from runtime. Issue #855Brian Anderson-0/+6