| Index: mojo/tools/get_test_list.py
|
| diff --git a/mojo/tools/get_test_list.py b/mojo/tools/get_test_list.py
|
| index 52bdfcce86f62c80aaa9b20911eb48c41a02c04a..773a795f36559ff8f6648509e91156849bde6ee3 100755
|
| --- a/mojo/tools/get_test_list.py
|
| +++ b/mojo/tools/get_test_list.py
|
| @@ -73,11 +73,8 @@ def GetTestList(config):
|
| unit_test_command = [os.path.join("mojo", "tools", "test_runner.py")]
|
| if target_os == Config.OS_ANDROID:
|
| unit_test_command.append("--android")
|
| - unittests_file = "android_unittests"
|
| - else:
|
| - unittests_file = "unittests"
|
| unit_test_command.extend(
|
| - [os.path.join("mojo", "tools", "data", unittests_file), build_dir,
|
| + [os.path.join("mojo", "tools", "data", "unittests"), build_dir,
|
| "mojob_test_successes"])
|
| AddXvfbEntry("Unit tests", unit_test_command)
|
|
|
|
|