rust/tests/source/configs
David Alber 6939e21f43 Moving config option tests to subdirectory
This was done by running the following.

```sh
for f in `find . -name "configs-*.rs"`; do
    topdir=`echo $f | cut -d/ -f2`;
    configname=`echo $f | cut -d/ -f3 | cut -d- -f2`;
    testname=`echo $f | cut -d/ -f3 | cut -d- -f3`;
    mkdir -p $topdir/configs/$configname;
    git mv $f $topdir/configs/$configname/$testname;
done
```
2017-12-28 10:29:48 -08:00
..
array_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
blank_lines_lower_bound Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
chain_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
comment_width Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
condense_wildcard_suffices Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
control_brace_style Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
disable_all_formatting Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
empty_item_single_line Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
error_on_line_overflow Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
fn_args_density Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
fn_args_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
fn_brace_style Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
fn_call_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
fn_single_line Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
force_explicit_abi Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
force_multiline_block Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
format_strings Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
generics_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
hard_tabs Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
item_brace_style Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
match_arm_blocks Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
match_block_trailing_comma Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
merge_derives Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
normalize_comments Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
reorder_imported_names Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
reorder_imports Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
reorder_imports_in_group Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
same_line_attributes Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
space_before_colon Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
spaces_around_ranges Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
spaces_within_parens_and_brackets Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
struct_field_align_threshold Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
struct_lit_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
struct_lit_single_line Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
tab_spaces Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
trailing_comma Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
type_punctuation_density Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
use_try_shorthand Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
where_pred_indent Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
where_single_line Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
where_style Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00
wrap_comments Moving config option tests to subdirectory 2017-12-28 10:29:48 -08:00