| Index: tools/valgrind/chrome_tests.py
|
| diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
|
| index 9552e8293f191f6caf93b1b349be9143ed2cb85c..d81cb5e42ebffdecbf93bbbec80fe4ae6b760f63 100755
|
| --- a/tools/valgrind/chrome_tests.py
|
| +++ b/tools/valgrind/chrome_tests.py
|
| @@ -237,6 +237,12 @@ class ChromeTests:
|
| def TestCrypto(self):
|
| return self.SimpleTest("crypto", "crypto_unittests")
|
|
|
| + def TestFFmpeg(self):
|
| + return self.SimpleTest("chrome", "ffmpeg_unittests")
|
| +
|
| + def TestFFmpegRegressions(self):
|
| + return self.SimpleTest("chrome", "ffmpeg_regression_tests")
|
| +
|
| def TestGfx(self):
|
| return self.SimpleTest("chrome", "gfx_unittests")
|
|
|
| @@ -452,6 +458,8 @@ class ChromeTests:
|
| "base": TestBase, "base_unittests": TestBase,
|
| "browser": TestBrowser, "browser_tests": TestBrowser,
|
| "crypto": TestCrypto, "crypto_unittests": TestCrypto,
|
| + "ffmpeg": TestFFmpeg, "ffmpeg_unittests": TestFFmpeg,
|
| + "ffmpeg_regression_tests": TestFFmpegRegressions,
|
| "googleurl": TestGURL, "googleurl_unittests": TestGURL,
|
| "content": TestContent, "content_unittests": TestContent,
|
| "courgette": TestCourgette, "courgette_unittests": TestCourgette,
|
|
|