diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 21:27:03 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 21:27:03 +0000 |
commit | c11172a63e28cd015bb29fb5dcd6c5291d40f1cf (patch) | |
tree | 96dae502ac01f7adfa260a0e6e3f771c2006e262 /tools | |
parent | bc6d4db439f0eb5bf3a7f3147639349171db1107 (diff) | |
download | chromium_src-c11172a63e28cd015bb29fb5dcd6c5291d40f1cf.zip chromium_src-c11172a63e28cd015bb29fb5dcd6c5291d40f1cf.tar.gz chromium_src-c11172a63e28cd015bb29fb5dcd6c5291d40f1cf.tar.bz2 |
Rename aura_shell_unittests to ash_unittests, part 1
* Rename aura_shell_unittests target to ash_unittests
* Add a target for aura_shell_unittests that makes a copy of ash_unittests
We need the old copy until we can switch the build bots to using the new copy.
cp.py needs to change slightly to preserve the executable bit of the test binary.
BUG=110107
TEST=Run build/gyp_chromium, inspected build.ninja files to verify rules existed for both ash_unittests and aura_shell_unittests, built and ran both targets
TBR=thestig@chromium.org for trivial rename in tools/valgrind/chrome_test.py
Review URL: https://chromiumcodereview.appspot.com/10700163
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/heapcheck/chrome_tests.py | 4 | ||||
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py index c8dfcae..52af2e9 100755 --- a/tools/heapcheck/chrome_tests.py +++ b/tools/heapcheck/chrome_tests.py @@ -78,7 +78,7 @@ class ChromeTests(object): # The known list of tests. # Recognise the original abbreviations as well as full executable names. self._test_list = { - "ash": self.TestAsh, "aura_shell_unittests": self.TestAsh, + "ash": self.TestAsh, "ash_unittests": self.TestAsh, "aura": self.TestAura, "aura_unittests": self.TestAura, "base": self.TestBase, "base_unittests": self.TestBase, "browser": self.TestBrowser, "browser_tests": self.TestBrowser, @@ -244,7 +244,7 @@ class ChromeTests(object): return heapcheck_test.RunTool(cmd, supp, module) def TestAsh(self): - return self.SimpleTest("ash", "aura_shell_unittests") + return self.SimpleTest("ash", "ash_unittests") def TestAura(self): return self.SimpleTest("aura", "aura_unittests") diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 0b88cb5..07285fe7 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -225,7 +225,7 @@ class ChromeTests: return tool.Run(cmd, None) def TestAsh(self): - return self.SimpleTest("ash", "aura_shell_unittests") + return self.SimpleTest("ash", "ash_unittests") def TestAura(self): return self.SimpleTest("aura", "aura_unittests") @@ -474,7 +474,7 @@ class ChromeTests: # Recognise the original abbreviations as well as full executable names. _test_list = { "cmdline" : RunCmdLine, - "ash": TestAsh, "aura_shell_unittests": TestAsh, + "ash": TestAsh, "ash_unittests": TestAsh, "aura": TestAura, "aura_unittests": TestAura, "automated_ui" : TestAutomatedUI, "base": TestBase, "base_unittests": TestBase, |