https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=298a93a14c3c18f0edcb22d4c1ad83ddd2753572
commit 298a93a14c3c18f0edcb22d4c1ad83ddd2753572
Author: Paul Floyd <pj...@wa...>
Date: Sat Apr 12 23:57:58 2025 +0200
Illumos regtest: use LC_ALL=C for execx test
There's an uninitialized read in /usr/bin/printf when using the
default en_US.UTF-8 locale. This isn't a printf test, and using
the C locale makes the error go away.
Diff:
---
memcheck/tests/solaris/execx.vgtest | 1 +
1 file changed, 1 insertion(+)
diff --git a/memcheck/tests/solaris/execx.vgtest b/memcheck/tests/solaris/execx.vgtest
index 3c81690707..8d28bece1b 100644
--- a/memcheck/tests/solaris/execx.vgtest
+++ b/memcheck/tests/solaris/execx.vgtest
@@ -1,3 +1,4 @@
prereq: test -e execx
+env: LC_ALL=C
prog: execx
vgopts: -q --trace-children=yes --num-callers=1
|