From 7cf09d8860b31dca526dc9925cf147443e0576af Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Fri, 31 Oct 2008 07:27:03 +0000 Subject: [PATCH] Changed the parsing a conditional expression in a test status file to look for 'if' and not 'IF' as all the status files use 'if'. This change catches the regression from r646. Review URL: http://codereview.chromium.org/8739 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@662 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index 5b3579b..10411a1 100755 --- a/tools/test.py +++ b/tools/test.py @@ -886,7 +886,7 @@ def ParseOperatorExpression(scan): def ParseConditionalExpression(scan): left = ParseOperatorExpression(scan) if not left: return None - while scan.HasMore() and (scan.Current() == 'IF'): + while scan.HasMore() and (scan.Current() == 'if'): scan.Advance() right = ParseOperatorExpression(scan) if not right: -- 2.7.4