| Index: tools/run-tests.py
|
| diff --git a/tools/run-tests.py b/tools/run-tests.py
|
| index a49f6560a6a6062ec657620f9a91d14b4563fcdc..a1de3dc0b9cc569b14392fe0f80f9fcf6fce7d14 100755
|
| --- a/tools/run-tests.py
|
| +++ b/tools/run-tests.py
|
| @@ -150,7 +150,7 @@ def ProcessOptions(options):
|
| options.mode = tokens[1]
|
| options.mode = options.mode.split(",")
|
| for mode in options.mode:
|
| - if not mode in ["debug", "release"]:
|
| + if not mode.lower() in ["debug", "release"]:
|
| print "Unknown mode %s" % mode
|
| return False
|
| if options.arch in ["auto", "native"]:
|
|
|