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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/setup.py

Issue 2166913002: bluetooth: Generate random service uuid and generate random fake adapter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-fuzzer-basics
Patch Set: Address scheib's comments Created 4 years, 5 months 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
Index: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/setup.py
diff --git a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/setup.py b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/setup.py
index d57da5665b411c15387a056414613faad2c186c3..d6700be63b76b1117da74b0cd56074caf6bd2d26 100644
--- a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/setup.py
+++ b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/setup.py
@@ -23,11 +23,16 @@ SRC_PATH = os.path.join(
os.pardir, os.pardir, os.pardir, os.pardir, os.pardir, os.pardir, os.pardir)
LAYOUT_TESTS_RESOURCES_PATH = os.path.join(
SRC_PATH, 'third_party', 'WebKit', 'LayoutTests', 'resources')
+COMMON_FUZZER_RESOURCES_PATH = os.path.join(
+ SRC_PATH, 'testing', 'clusterfuzz', 'common')
RESOURCES = [
os.path.join(LAYOUT_TESTS_RESOURCES_PATH, 'testharness.js'),
os.path.join(LAYOUT_TESTS_RESOURCES_PATH, 'testharnessreport.js'),
os.path.join(LAYOUT_TESTS_RESOURCES_PATH, 'bluetooth',
'bluetooth-helpers.js'),
+ os.path.join(COMMON_FUZZER_RESOURCES_PATH, 'fuzzy_types.py'),
+ os.path.join(COMMON_FUZZER_RESOURCES_PATH, 'utils.py'),
+ os.path.join(COMMON_FUZZER_RESOURCES_PATH, '__init__.py'),
]

Powered by Google App Engine
This is Rietveld 408576698