Add Chromium-only Blender WebEngine parity work

This commit is contained in:
mes123456
2026-08-12 04:47:48 -04:00
commit 9fd26010f6
18225 changed files with 11622124 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
import _sha1
import _sha2
import _md5
import ssl
import multiprocessing.synchronize

View File

@@ -0,0 +1,10 @@
# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
# This code tests bug reported in #50703
import numpy
a = numpy.array([[3, 2, 0], [3, 1, 0]], dtype=numpy.int32)
a[0]

View File

@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
import numpy

View File

@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
import requests
# Test this specific endpoint because this will check for a connection to the
# buildbot master. We should be quite sure that this endpoint is up if the
# builder is running the release check scripts.
website = "https://builder.blender.org/admin/"
r = requests.get(website, verify=True, timeout=30)
assert r.status_code == 200, f"{website} returned a status code {r.status_code}, we expected 200"
assert r.reason == "OK", f"Didn't get 'OK' response from {website}, got {r.reason}"
assert len(r.content) > 256, "The content we got from the web request is too small to be valid"

View File

@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
import requests