summary refs log tree commit diff
path: root/src/doc/trpl/benchmark-tests.md
AgeCommit message (Collapse)AuthorLines
2015-05-18TRPL: Normalize rust Code Block MarkersPascal Hertleif-2/+2
`{rust,ignore}` -> `rust,ignore
2015-04-29Adapt benchmark tests to unit test guidelinesjooert-1/+1
Since #24783, the style guidelines recommend that unit tests should live in a submodule `tests` rather than `test` to not clash with the possible use of libtest. This is especially important for benchmark tests as they require libtest. Fixes #24923.
2015-04-03book: use `mod test` consistentlyDan Callahan-1/+1
Fixes #24030 Of the four code samples with modules in TRPL: - 2 use `mod test` - 2 use `mod tests` We should be consistent here, but which is right? The stdlib is split: $ grep -r 'mod tests {' src/lib* | wc -l 63 $ grep -r 'mod test {' src/lib* | wc -l 58 Subjectively, I like the plural, but both the language reference and the style guide recommend the singular. So we'll go with that here, for now.
2015-03-31Move benchmark tests to unstable sectionSteve Klabnik-0/+152
Fixes #23881