Commit 7cf09d88 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Changed the parsing a conditional expression in a test status file to look for...

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
parent 25421c9c
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment