about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--050scenario.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/050scenario.cc b/050scenario.cc
index 4ccef4a8..c9f9d101 100644
--- a/050scenario.cc
+++ b/050scenario.cc
@@ -504,7 +504,7 @@ def main [
     a: d
   ]
 ]
-+error: missing [b] in trace with label a
++error: missing [b] in trace with label 'a'
 
 :(before "End Primitive Recipe Declarations")
 TRACE_SHOULD_CONTAIN,
@@ -572,7 +572,7 @@ def main [
     a: d
   ]
 ]
-+error: missing [d] in trace with label a
++error: missing [d] in trace with label 'a'
 
 :(scenario trace_check_passes_silently)
 % Scenario_testing_scenario = true;
@@ -584,7 +584,7 @@ def main [
     a: b
   ]
 ]
--error: missing [b] in trace with label a
+-error: missing [b] in trace with label 'a'
 $error: 0
 
 //: 'trace-should-not-contain' is like the '-' lines in our scenarios so far
@@ -602,7 +602,7 @@ def main [
     a: b
   ]
 ]
-+error: unexpected [b] in trace with label a
++error: unexpected [b] in trace with label 'a'
 
 :(before "End Primitive Recipe Declarations")
 TRACE_SHOULD_NOT_CONTAIN,
@@ -627,7 +627,7 @@ bool check_trace_missing(const string& in) {
   vector<trace_line> lines = parse_trace(in);
   for (int i = 0; i < SIZE(lines); ++i) {
     if (trace_count(lines.at(i).label, lines.at(i).contents) != 0) {
-      raise << "unexpected [" << lines.at(i).contents << "] in trace with label " << lines.at(i).label << '\n' << end();
+      raise << "unexpected [" << lines.at(i).contents << "] in trace with label '" << lines.at(i).label << "'\n" << end();
       Passed = false;
       return false;
     }
@@ -642,7 +642,7 @@ def main [
     a: b
   ]
 ]
--error: unexpected [b] in trace with label a
+-error: unexpected [b] in trace with label 'a'
 $error: 0
 
 :(scenario trace_negative_check_fails_on_any_unexpected_line)
@@ -657,7 +657,7 @@ def main [
     a: d
   ]
 ]
-+error: unexpected [d] in trace with label a
++error: unexpected [d] in trace with label 'a'
 
 :(scenario trace_count_check)
 def main [
@@ -697,12 +697,12 @@ case CHECK_TRACE_COUNT_FOR_LABEL: {
   if (count != expected_count) {
     if (Current_scenario && !Scenario_testing_scenario) {
       // genuine test in a mu file
-      raise << "\nF - " << Current_scenario->name << ": " << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label " << label << " in trace: " << end();
+      raise << "\nF - " << Current_scenario->name << ": " << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label '" << label << "' in trace: " << end();
       DUMP(label);
     }
     else {
       // just testing scenario support
-      raise << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label " << label << " in trace\n" << end();
+      raise << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label '" << label << "' in trace\n" << end();
     }
     if (!Scenario_testing_scenario) {
       Passed = false;
@@ -721,7 +721,7 @@ def main [
   ]
   check-trace-count-for-label 2, [a]
 ]
-+error: main: expected 2 lines in trace with label a in trace
++error: main: expected 2 lines in trace with label 'a' in trace
 
 //: Minor detail: ignore 'system' calls in scenarios, since anything we do
 //: with them is by definition impossible to test through mu.
href='#n211'>211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338