| Index: mojo/tools/apptest_runner.py
|
| diff --git a/mojo/tools/apptest_runner.py b/mojo/tools/apptest_runner.py
|
| index 901babfaa7452f3505b2cccb1131449d35b28db6..bbe483999db2a0e0c7bdca8291f3897b067693d8 100755
|
| --- a/mojo/tools/apptest_runner.py
|
| +++ b/mojo/tools/apptest_runner.py
|
| @@ -18,8 +18,9 @@ import gtest
|
|
|
| def main():
|
| logging.basicConfig()
|
| + # TODO(msw): Restore the logging level when apptests are working as expected.
|
| # Uncomment to debug:
|
| - #_logging.setLevel(logging.DEBUG)
|
| + _logging.setLevel(logging.DEBUG)
|
|
|
| parser = argparse.ArgumentParser(description='A test runner for gtest '
|
| 'application tests.')
|
| @@ -59,8 +60,7 @@ def main():
|
|
|
| apptest_result = "Succeeded"
|
| for fixture in fixtures:
|
| - args_for_apptest = " ".join(["--args-for=" + apptest,
|
| - "--gtest_filter=" + fixture] + apptest_args)
|
| + args_for_apptest = " ".join(["--gtest_filter=" + fixture] + apptest_args)
|
|
|
| success = RunApptestInShell(mojo_shell_path, apptest,
|
| shell_args + [args_for_apptest])
|
|
|