Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1247)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux_unittest.py

Issue 2514253002: Remove support for the linux-precise layout tests port. (Closed)
Patch Set: Temporarily skip tests that are failing on linux_chromium_rel_ng Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux_unittest.py
index f8a7edc53e2635927c053792f5065aa534babf2b..9a29394c7b553f9ac59c0de97be72cbf72e2c659 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux_unittest.py
@@ -53,13 +53,10 @@ class LinuxPortTest(port_testcase.PortTestCase):
self.assertEqual(port.version(), expected_version)
def test_versions(self):
- self.assertTrue(self.make_port().name() in ('linux-precise', 'linux-trusty'))
+ self.assertTrue(self.make_port().name() in ('linux-trusty',))
self.assert_version_properties('linux', 'trusty', 'linux-trusty', 'trusty')
- self.assert_version_properties('linux', 'precise', 'linux-precise', 'precise')
-
self.assert_version_properties('linux-trusty', None, 'linux-trusty', 'trusty')
- self.assert_version_properties('linux-precise', None, 'linux-precise', 'precise')
self.assertRaises(AssertionError, self.assert_version_properties,
'linux-utopic', None, 'ignored', 'ignored', 'ignored')
@@ -74,10 +71,7 @@ class LinuxPortTest(port_testcase.PortTestCase):
def test_baseline_paths(self):
self.assert_baseline_paths('linux', 'trusty', 'linux', '/win')
- self.assert_baseline_paths('linux', 'precise', 'linux-precise', '/linux', '/win')
-
self.assert_baseline_paths('linux-trusty', None, 'linux', '/win')
- self.assert_baseline_paths('linux-precise', None, 'linux-precise', '/linux', '/win')
def test_check_illegal_port_names(self):
# FIXME: Check that, for now, these are illegal port names.
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698