cefbuilds: Add tools distribution (see #3734)

This commit is contained in:
Marshall Greenblatt
2024-07-11 12:15:48 -04:00
parent 5607a4d347
commit 4023fea237
3 changed files with 19 additions and 4 deletions

View File

@@ -152,6 +152,10 @@ class TestCefJSONBuilder(unittest.TestCase):
def test_add_client_file(self):
self._test_add_file('client')
# Test add/get of a tools type file.
def test_add_tools_file(self):
self._test_add_file('tools')
# Test add/get of a debug_symbols type file.
def test_add_debug_symbols_file(self):
self._test_add_file('debug_symbols')
@@ -172,6 +176,10 @@ class TestCefJSONBuilder(unittest.TestCase):
def test_add_client_file_beta(self):
self._test_add_file('client', channel='beta')
# Test add/get of a tools type file in beta channel.
def test_add_tools_file_beta(self):
self._test_add_file('tools', channel='beta')
# Test add/get of a debug_symbols type file in beta channel.
def test_add_debug_symbols_file_beta(self):
self._test_add_file('debug_symbols', channel='beta')