From d4616725ad8bc4636b6092f2064349c635802bcb Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 29 Jul 2011 15:11:14 -0700 Subject: [PATCH] Add issue numbers to FIXMEs in compiletest --- src/test/compiletest/compiletest.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/compiletest/compiletest.rs b/src/test/compiletest/compiletest.rs index e4f667d27309..2329a3549352 100644 --- a/src/test/compiletest/compiletest.rs +++ b/src/test/compiletest/compiletest.rs @@ -700,7 +700,7 @@ mod procsrv { fn worker(p: port[request]) { - // FIXME: If we declare this inside of the while loop and then + // FIXME (787): If we declare this inside of the while loop and then // break out of it before it's ever initialized (i.e. we don't run // any tests), then the cleanups will puke, so we're initializing it // here with defaults. @@ -719,7 +719,7 @@ mod procsrv { // everything and let the originals go out of scope before sending // a response. execparms = { - // FIXME: The 'discriminant' of an alt expression has the + // FIXME (785): The 'discriminant' of an alt expression has the // same scope as the alt expression itself, so we have to put // the entire alt in another block to make sure the exec // message goes out of scope. Seems like the scoping rules for