diff options
author | tfarina <tfarina@chromium.org> | 2015-01-07 09:22:53 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-07 17:23:54 +0000 |
commit | c87c3d2d949f9ba4f17627dc023b303c75b7635f (patch) | |
tree | a34eb58f9815d3410dffe7ecab2eece75f6c84c7 /tools/valgrind/chrome_tests.py | |
parent | f1d3d3d3a183e054679e41718febe43c5c5f0954 (diff) | |
download | chromium_src-c87c3d2d949f9ba4f17627dc023b303c75b7635f.zip chromium_src-c87c3d2d949f9ba4f17627dc023b303c75b7635f.tar.gz chromium_src-c87c3d2d949f9ba4f17627dc023b303c75b7635f.tar.bz2 |
skia: Add 'skia_unittests' test suite for this directory.
This should be a lightweight test suite that should allow a dev changing
something in skia/ext to test it much more quickly than having to build
all 'unit_tests' target just to run the tests from skia/ext.
BUG=444058
TEST=skia_unittests links and runs fine.
R=danakj@chromium.org,thakis@chromium.org
Review URL: https://codereview.chromium.org/815023003
Cr-Commit-Position: refs/heads/master@{#310310}
Diffstat (limited to 'tools/valgrind/chrome_tests.py')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index eef3175..40ef7ba 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -446,6 +446,9 @@ class ChromeTests: "--ui-test-action-timeout=60000", "--ui-test-action-max-timeout=150000"]) + def TestSkia(self): + return self.SimpleTest("skia", "skia_unittests") + def TestSql(self): return self.SimpleTest("chrome", "sql_unittests") @@ -706,6 +709,7 @@ class ChromeTests: "remoting": TestRemoting, "remoting_unittests": TestRemoting, "safe_browsing": TestSafeBrowsing, "safe_browsing_tests": TestSafeBrowsing, "sandbox": TestLinuxSandbox, "sandbox_linux_unittests": TestLinuxSandbox, + "skia": TestSkia, "skia_unittests": TestSkia, "sql": TestSql, "sql_unittests": TestSql, "sync": TestSync, "sync_unit_tests": TestSync, "sync_integration_tests": TestSyncIntegration, |