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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/fuzz_integration_test.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/fuzz_integration_test.py
diff --git a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/fuzz_integration_test.py b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/fuzz_integration_test.py
index 3be8cf70f91c71190a6cb745f72195c1f48f1901..c127bea12f9125c9e3a00c20975030d19d6f0ae5 100644
--- a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/fuzz_integration_test.py
+++ b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/fuzz_integration_test.py
@@ -11,7 +11,6 @@ import sys
import tempfile
import unittest
-import fuzz_main_run
import setup
@@ -30,6 +29,7 @@ class WebBluetoothFuzzerTest(unittest.TestCase):
'--input_dir={}'.format(self._output_dir),
'--output_dir={}'.format(self._output_dir)]
+ import fuzz_main_run
fuzz_main_run.main()
written_files = glob.glob(os.path.join(self._output_dir, '*.html'))

Powered by Google App Engine
This is Rietveld 408576698