From 291c43af312457c33127cb962cbc6192c6eb8d3a Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 30 Jul 2011 22:02:08 -0700 Subject: [PATCH] Fix comment typo in compiletest --- src/test/compiletest/compiletest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/compiletest/compiletest.rs b/src/test/compiletest/compiletest.rs index ab1eb989b292..63778c2487bd 100644 --- a/src/test/compiletest/compiletest.rs +++ b/src/test/compiletest/compiletest.rs @@ -169,7 +169,7 @@ fn make_test_name(config: &config, testfile: &str) -> str { So this is kind of crappy: A test is just defined as a function, as you might expect, but tests have to -run their own tasks. Unfortunately, if your test needs dynamic data then it +run in their own tasks. Unfortunately, if your test needs dynamic data then it needs to be a closure, and transferring closures across tasks without committing a host of memory management transgressions is just impossible.