From 25715bd59eb339fd37f979a425651802702b4618 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 26 Sep 2012 17:20:33 -0700 Subject: [PATCH] Fix check-fast for the change to main's signature. --- src/etc/combine-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/combine-tests.py b/src/etc/combine-tests.py index 9af7a3d8f82..7016713f2fe 100755 --- a/src/etc/combine-tests.py +++ b/src/etc/combine-tests.py @@ -30,7 +30,7 @@ for t in os.listdir(run_pass): "xfail-fast" in s or "xfail-win32" in s): stage2_tests.append(t) - if "main(args: ~[~str])" in s: + if "fn main(args:" in s or "fn main(++args:" in s: take_args[t] = True f.close()