diff options
| author | bors <bors@rust-lang.org> | 2014-02-07 11:26:29 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-02-07 11:26:29 -0800 |
| commit | 56565eb129018a708445afcd6ea14f5b51cf27e5 (patch) | |
| tree | 6ac3203e6798df65908f65ec403f99f19400bea3 /src/test/debug-info/unique-enum.rs | |
| parent | ca40da8b55a04394f1db11b6c7410e49b63c6e04 (diff) | |
| parent | 730bdb6403dd47b98c1be6c4b3423edb28ca9477 (diff) | |
| download | rust-56565eb129018a708445afcd6ea14f5b51cf27e5.tar.gz rust-56565eb129018a708445afcd6ea14f5b51cf27e5.zip | |
auto merge of #12055 : dguenther/rust/tidy_test, r=alexcrichton
This PR extends the tidy formatting check to rust files in the test folder. To facilitate this, a few flags were added to tidy: * `xfail-tidy-cr` - Disables the check for CR characters for all following lines in the file * `xfail-tidy-tab` - Disables the check for tab characters for all following lines in the file * `xfail-tidy-linelength` - Disables the line length check for all following lines in the file Checks should not have to be disabled often. I disabled line length checks in `debug-info` tests that use `debugger:` checks, but aside from that, there were relatively few exclusions. Running tidy on all the tests does slow down the formatting check, so it may be worth investigating further optimization. cc #4534
Diffstat (limited to 'src/test/debug-info/unique-enum.rs')
| -rw-r--r-- | src/test/debug-info/unique-enum.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/debug-info/unique-enum.rs b/src/test/debug-info/unique-enum.rs index 66fa8e183e9..647a6e55f98 100644 --- a/src/test/debug-info/unique-enum.rs +++ b/src/test/debug-info/unique-enum.rs @@ -31,8 +31,8 @@ // the size of the discriminant value is machine dependent, this has be taken into account when // datatype layout should be predictable as in this case. enum ABC { - TheA { x: i64, y: i64 }, - TheB (i64, i32, i32), + TheA { x: i64, y: i64 }, + TheB (i64, i32, i32), } // This is a special case since it does not have the implicit discriminant field. @@ -46,10 +46,10 @@ fn main() { // repeated byte. This way each interpretation of the union should look the same, no matter if // this is a big or little endian machine. - // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452 - // 0b01111100011111000111110001111100 = 2088533116 - // 0b0111110001111100 = 31868 - // 0b01111100 = 124 + // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452 + // 0b01111100011111000111110001111100 = 2088533116 + // 0b0111110001111100 = 31868 + // 0b01111100 = 124 let the_a = ~TheA { x: 0, y: 8970181431921507452 }; // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441 |
