| Index: tools/run-tests.py
|
| diff --git a/tools/run-tests.py b/tools/run-tests.py
|
| index cc3f39aff438310522cfb55f255928b57a6b7168..bd90517ad5700798c4ac50c6ee260b18fc76f22b 100755
|
| --- a/tools/run-tests.py
|
| +++ b/tools/run-tests.py
|
| @@ -114,6 +114,9 @@ def BuildOptions():
|
| result.add_option("-m", "--mode",
|
| help="The test modes in which to run (comma-separated)",
|
| default="release,debug")
|
| + result.add_option("--no-i18n", "--noi18n",
|
| + help="Skip internationalization tests",
|
| + default=False, action="store_true")
|
| result.add_option("--no-network", "--nonetwork",
|
| help="Don't distribute tests on the network",
|
| default=(utils.GuessOS() != "linux"),
|
| @@ -216,6 +219,8 @@ def ProcessOptions(options):
|
| if not options.flaky_tests in ["run", "skip", "dontcare"]:
|
| print "Unknown flaky test mode %s" % options.flaky_tests
|
| return False
|
| + if not options.no_i18n:
|
| + DEFAULT_TESTS.append("intl")
|
| return True
|
|
|
|
|
|
|