[lldb][PlatformDarwin][test] Add unit-test for LocateExecutableScriptingResourcesFromDSYM (#185057)
Depends on:
* https://github.com/llvm/llvm-project/pull/185056
Adds test unit-test for
`PlatformDarwin::LocateExecutableScriptingResourcesFromDSYM`. I had to
mock the `ScriptInterpreter` because the function internally uses the
`ScriptInterpreterPython` to check for reserved words in file names. But
linking the `ScriptInterpreterPython` was quite the undertaking, which I
think we could pull off, but required more churn that I had hoped.
Mocking it seemed pretty low-cost so I resorted to doing that instead.
Test-cases aren't very elaborate yet. It just has a basic assertion that
we locate the Python file within the dSYM. Mostly I set up
infrastructure for future test-cases.
www/*nginx: Switch nginx-vod-module to maintained fork
The original Kaltura nginx-vod-module repository is no longer actively
maintained and has been incompatible with FFmpeg 8 due to removed
legacy API calls.
Switch to the actively maintained fork:
https://github.com/diogoazevedos/nginx-vod-module
This restores compatibility with newer FFmpeg versions.
Reported by: Jim Terhune via ML
Sponsored by: Netzkommune GmbH
goffice0.10: update to 0.10.60
- Fix fraction format problem. [Bug 803].
- Doc fixes.
- Remove workaround for ancient gtk+ bug. [Bug 81].
- I18N fix for format selector.
Maybe this helps with PR pkg/60059.
gnumeric: update to 1.12.60
Noteworthy news in this release:
- Improve gui experience on high-dpi display (where "high" really just
means significantly different from 90, so not a high bar)
- A year's worth of accumulated bug fixes.
geo/qgis: major update to 4.0, switches to Qt6 by default
see https://changelog.qgis.org/en/version/4.0/
that's one less direct consumer for x11/qt5/qtwebkit
still considered an early alpha upstream, but works in daily use. most
plugins need to be explicitely declared as compatible with it.
libclc: Avoid duplicated get_local_size/get_global_size functions (#185166)
Move opencl handling on top of clc into opencl generic, delete
amdgpu implementations in opencl.
[Analysis] isTriviallyVectorizable - add Intrinsic::clmul along with vectorisation tests (#180014)
This patch adds a case in isTriviallyVectorizable in llvm/lib/Analysis/VectorUtils.cpp for Intrinsic::clmul.
Fixes #179106
qemu: remove guest-agent from package
The QEMU guest agent is now a separate package,
sysutils/qemu-guest-agent. Remove it from this package so that both can
be installed.
Requested by riastradh@ in PR pkg/59742
Also install vmsr-helper only on Linux on Intel.
tests/tet: (WIP) Improve test conciseness.
TET handles multiple calls to tet_result() in a well-defined
way: when there are multiple calls to tet_result() from
within a test, 'FAIL' or 'UNRESOLVED' test statuses will
override any subsequent 'PASS' statuses. Use this behavior
to remove the need to track test status using a dedicated
'result' variable.
Subsequent changes will remove the now-redundant 'result'
variable from test case code.