Skip to content

Commit 9205f3d

Browse files
committed
macro-commas test cleanup
1 parent b7c6dc6 commit 9205f3d

File tree

2 files changed

+5
-19
lines changed

2 files changed

+5
-19
lines changed

src/test/run-pass/macro-comma-behavior.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ fn debug_assert_1arg() {
4444
// make sure we don't accidentally forward to `write!("text")`
4545
#[cfg(std)]
4646
#[test]
47-
fn writeln_2arg() {
47+
fn writeln_1arg() {
4848
use fmt::Write;
4949

5050
let mut s = String::new();
51-
writeln!(&mut s, "hi",).unwrap();
52-
assert_eq!(&s, "hi\n");
51+
writeln!(&mut s,).unwrap();
52+
assert_eq!(&s, "\n");
5353
}
5454

5555
// A number of format_args-like macros have special-case treatment

src/test/run-pass/macro-comma-support.rs

+2-16
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,10 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// This is a comprehensive test of invocations with and without
11+
// This is meant to be a comprehensive test of invocations with/without
1212
// trailing commas (or other, similar optionally-trailing separators).
1313
// Every macro is accounted for, even those not tested in this file.
1414
// (There will be a note indicating why).
15-
//
16-
// The expectation is for this to be updated as new macros are added,
17-
// or as functionality is added to existing macros.
18-
//
19-
// (FIXME: (please discuss in PR) is the above expectation reasonable?)
2015

2116
// std and core are both tested because they may contain separate
2217
// implementations for some macro_rules! macros as an implementation
@@ -245,16 +240,7 @@ fn println() {
245240
println!("hello {}", "world",);
246241
}
247242

248-
// FIXME: select! (please discuss in PR)
249-
//
250-
// Test cases for select! are obnoxiously large, see here:
251-
//
252-
// https://github.com/ExpHP/rust-macro-comma-test/blob/0062e75e01ab/src/main.rs#L190-L250
253-
//
254-
// and due to other usability issues described there, it is unclear to me that it is
255-
// going anywhere in its current state. This is a job far too big for a macro_rules! macro,
256-
// and for as long as it exists in this form it will have many many problems far worse than
257-
// just lack of trailing comma support.
243+
// select! is too troublesome and unlikely to be stabilized
258244

259245
// stringify! is N/A
260246

0 commit comments

Comments
 (0)