From 1230c01646c1d9a90cc960af40787ced0b11c901 Mon Sep 17 00:00:00 2001 From: zimoch Date: Tue, 7 Dec 2010 12:49:48 +0000 Subject: [PATCH] use _ to match arbitrary whitespace --- streamApp/tests/testWaveform | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/streamApp/tests/testWaveform b/streamApp/tests/testWaveform index 0757bf0..94a1714 100755 --- a/streamApp/tests/testWaveform +++ b/streamApp/tests/testWaveform @@ -52,14 +52,14 @@ set protocol { in "text %f end"; out "%(NORD)d elements: %.1f"; } testi { - Separator = " "; + Separator = "\_"; @mismatch {out "mismatch after %(NORD)d elements: %i\n"} - in "%3i "; out "%(NORD)d elements: %i"; + in "%3i\_"; out "%(NORD)d elements: %i"; } tests { - Separator = " ... "; + Separator = "\_...\_"; @mismatch {out "mismatch after %(NORD)d elements: %s\n"} - in "%s "; out "%(NORD)d elements: %s"; + in "%s\_"; out "%(NORD)d elements: %s"; } }