Added build symlink to update job.
PRESUBMIT=passed
R=raymes,bjanakiraman
DELTA=11 (10 added, 0 deleted, 1 changed)
OCL=46053-p2
RCL=46055-p2
RDATE=2010/12/21 11:48:33
P4 change: 42607502
diff --git a/v14/run_tests.py b/v14/run_tests.py
index 2f3f2fd..67ee643 100755
--- a/v14/run_tests.py
+++ b/v14/run_tests.py
@@ -11,6 +11,7 @@
import optparse
import os
+import re
import sys
from utils import command_executer
@@ -38,6 +39,10 @@
if args:
tests = " " + " ".join(args)
+
+ case_insensitive_page = re.compile("page", re.IGNORECASE)
+ tests = case_insensitive_page.sub("Page", tests)
+
return RunRemoteTests(options.chromeos_root, options.remote,
options.board, tests)