about summary refs log tree commit diff
path: root/src/libcore/run.rs
AgeCommit message (Collapse)AuthorLines
2012-08-15Convert more core types to camel caseBrian Anderson-2/+2
2012-08-15Expunge match checksTim Chevalier-1/+5
2012-08-14Convert more core types to camel caseBrian Anderson-25/+25
2012-08-14Attempt to fix windows bustageBrian Anderson-2/+2
2012-08-14De-mode more pieces of core.Graydon Hoare-30/+34
2012-08-08Convert impls to new syntaxBrian Anderson-2/+1
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-4/+4
2012-08-05Switch alts to use arrowsBrian Anderson-12/+8
2012-08-01Convert ret to returnBrian Anderson-10/+10
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-1/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-3/+3
2012-07-24Fix windows breakage.Graydon Hoare-1/+1
2012-07-24Update some str functions to slices, merge as_buf and unpack_slice.Graydon Hoare-2/+2
2012-07-23Switch reader to work with preallocated vecsErick Tryzelaar-0/+1
This closes #2901.
2012-07-14Fix a bunch of deprecated str/vec errors in code for non 64-bit linux ↵Michael Sullivan-1/+1
platforms...
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-23/+23
#2907.
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-72/+72
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-04Remove empty argument lists from do expressionsBen Striegel-2/+2
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-07-01Convert to new closure syntaxBrian Anderson-14/+14
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-11/+11
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-22/+22
2012-06-27Removed pretty much all the vector+ from core (issue #2719)Eric Holk-5/+5
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-25/+25
2012-06-25MergeTim Chevalier-21/+25
2012-06-25core: Convert declarations to not use the trailing 'unsafe' notationBrian Anderson-21/+25
2012-06-21[NEEDS SNAPSHOT] Port remainder of resources to classes in libcoreTim Chevalier-12/+16
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-2/+2
2012-06-14Comments only: annotate FIXMEs in core::runTim Chevalier-2/+2
2012-06-08core: Don't deadlock on io streams in run::program_outputBrian Anderson-26/+72
We can't just read all of stdout before stderr or it will cause deadlocks for children that want to write a lot to stderr I could not come up with an obvious cross-platform way to easily test this.
2012-06-07Use #[cfg(unix)] and #[cfg(windows)] everywhereBrian Anderson-9/+5
2012-04-13add option exec-env to set env variables during test executionNiko Matsakis-4/+4
2012-03-27Move some code over to iterator-for to see how it performs.Marijn Haverbeke-3/+5
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-4/+4
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-1/+1
2012-03-20core: Rename unsafe::leak to unsafe::forget. Closes #2031Brian Anderson-1/+1
2012-03-20Fail when there's an error starting a process. Close #1778.Graydon Hoare-3/+5
2012-03-14Convert *u8 native string users to *c_charBrian Anderson-7/+8
2012-03-14core:: Eliminate str::sbuf. Replace with *u8Brian Anderson-4/+3
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-0/+394
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.