about summary refs log tree commit diff
path: root/src/librustc_data_structures/graph/test.rs
AgeCommit message (Collapse)AuthorLines
2019-08-02librustc_data_structures: Unconfigure tests during normal buildVadim Petrochenkov-75/+0
2019-07-03Add missing lifetime specifierJeremy Stucki-1/+1
2019-07-03Remove needless lifetimesJeremy Stucki-4/+4
2019-02-09librustc_data_structures => 2018Taiki Endo-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-28Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.Eduard-Mihai Burtescu-5/+5
2018-08-18Use the new Entry::or_default method where possible.Eduard-Mihai Burtescu-4/+4
2018-07-12introduce a generic SCC computationNiko Matsakis-2/+10
2018-07-12rename `control_flow_graph` to `graph`Niko Matsakis-0/+77
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-139/+0
Changes the style guidelines regarding unit tests to recommend using a sub-module named "tests" instead of "test" for unit tests as "test" might clash with imports of libtest.
2015-04-17Add licenses.Niko Matsakis-0/+10
2015-04-17Port to using the newer graph, which offers iterators instead of theNiko Matsakis-0/+129
older `each` method, but is otherwise identical.