about summary refs log tree commit diff
path: root/src/test/run-pass/rt-circular-buffer.rs
AgeCommit message (Collapse)AuthorLines
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-7/+7
2011-11-17remove compile-command from local variable blocksNiko Matsakis-1/+0
2011-10-21Remove some semicolons after block callsMarijn Haverbeke-7/+7
The remaining ones can be removed after the next snapshot. (Or we can let the next pretty-print pass take care of them.)
2011-10-21Remove remaining uses of iter and for-eachMarijn Haverbeke-13/+13
Issue #1056
2011-08-25Cleaning up task and comm exports, updating all the test cases.Eric Holk-17/+19
2011-08-20ReformatBrian Anderson-7/+7
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-16Port the tests to the expr foo::<T> syntax.Erick Tryzelaar-5/+5
2011-08-16Port the tests to the typaram foo<T> syntax.Erick Tryzelaar-1/+1
2011-08-16Removed trans_comm.rs from the compiler. Updating aio/sio to work with the ↵Eric Holk-34/+35
new chan and port system, started on a networking module for the standard library.
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-7/+7
2011-08-12Remove std::vecBrian Anderson-1/+0
2011-07-27Reformat for new syntaxMarijn Haverbeke-28/+29
2011-06-15Fix a bunch of compile-command lines to use RBUILDGraydon Hoare-1/+1
2011-06-15Reformat source tree (minus a couple tests that are still grumpy).Graydon Hoare-33/+19
2011-05-27Change the syntax for RECV from "var <- port" to "port |> var".Michael Sullivan-4/+4
2011-05-27Remove parser support for recv as an initializer in preparation for changing ↵Michael Sullivan-4/+4
the recv syntax.
2011-05-17Finally rename std::_xxx to std::xxxMarijn Haverbeke-9/+9
Except for _task, which is still a keyword.
2011-05-12Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke-10/+10
This should be a snapshot transition.
2011-05-06Rename std modules to be camelcasedMarijn Haverbeke-10/+10
(Have fun mergining your stuff with this.)
2011-05-02Un-revert "Use different syntax for checks that matter to typestate", fixing ↵Patrick Walton-6/+6
the problem. This reverts commit d08b443fffb1181d8d45ae5d061412f202dd4118.
2011-05-02Revert "Use different syntax for checks that matter to typestate"Graydon Hoare-6/+6
This reverts commit aa25f22f197682de3b18fc4c8ba068d1feda220f. It broke stage2, not sure why yet.
2011-05-02Use different syntax for checks that matter to typestateTim Chevalier-6/+6
This giant commit changes the syntax of Rust to use "assert" for "check" expressions that didn't mean anything to the typestate system, and continue using "check" for checks that are used as part of typestate checking. Most of the changes are just replacing "check" with "assert" in test cases and rustc.
2011-05-01Un-XFAIL various tests in stage0Brian Anderson-1/+0
2011-04-19Remove effect system from src.Graydon Hoare-7/+7
2011-03-25Switch xfail system to use comments embedded in source files.Graydon Hoare-0/+1
2011-01-10Remove the assumption that circular_buffer's buffer has a power of two sizeBrian Anderson-0/+20
It was not obvious how to make this implementation work when the unit size was not also a power of two, so for now just make the buffer size a multiple of the unit size so it can pass all the tests.
2011-01-10Remove unused variable in circular_buffer testsBrian Anderson-2/+0
2011-01-10Rename test to reflect that the circular_buffer runtime class is what's ↵Brian Anderson-0/+104
being tested