From 007b9d9acd8b04ad2e1984aeba79c2031dec0e45 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 25 Jun 2012 21:38:27 -0700 Subject: [PATCH] Update combine-tests.py for new vec syntax --- src/etc/combine-tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/etc/combine-tests.py b/src/etc/combine-tests.py index ae56ff7324c..6810e6fec4d 100755 --- a/src/etc/combine-tests.py +++ b/src/etc/combine-tests.py @@ -30,6 +30,8 @@ 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: + take_args[t] = True if "main(args: [str])" in s: take_args[t] = True f.close()