mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 18:44:05 +00:00
* Apply upstream fix to silent a valgrind issue in the test suite
(Closes: ##812825)
This commit is contained in:
parent
3fb9dbb3ca
commit
e839ff2df1
9
debian/changelog
vendored
9
debian/changelog
vendored
@ -1,8 +1,15 @@
|
||||
rustc (1.6.0+dfsg1-3) UNRELEASED; urgency=medium
|
||||
rustc (1.6.0+dfsg1-3) unstable; urgency=medium
|
||||
|
||||
* Apply upstream fix to silent a valgrind issue in the test suite
|
||||
(Closes: ##812825)
|
||||
* Add gcc & libc-dev as dependency of rustc to make sure it works
|
||||
out of the box
|
||||
|
||||
[ Ximin Luo ]
|
||||
* Work around rust bug https://github.com/rust-lang/rust/issues/31529
|
||||
* Enable optional tests, and add verbosity/backtraces to tests
|
||||
* Use XZ instead of GZ compression (will apply to the next new upload)
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 02 Feb 2016 15:08:11 +0100
|
||||
|
||||
rustc (1.6.0+dfsg1-2) unstable; urgency=medium
|
||||
|
||||
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -2,3 +2,4 @@ rust-gdb-paths
|
||||
rust-lldb-paths
|
||||
add-soname
|
||||
wno-error
|
||||
valgrind-workaround.diff
|
||||
|
||||
13
debian/patches/valgrind-workaround.diff
vendored
Normal file
13
debian/patches/valgrind-workaround.diff
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/src/test/run-pass-valgrind/down-with-thread-dtors.rs b/src/test/run-pass-valgrind/down-with-thread-dtors.rs
|
||||
index 5c449d5..0bf10c6 100644
|
||||
--- a/src/test/run-pass-valgrind/down-with-thread-dtors.rs
|
||||
+++ b/src/test/run-pass-valgrind/down-with-thread-dtors.rs
|
||||
@@ -8,6 +8,8 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
+// no-prefer-dynamic
|
||||
+
|
||||
thread_local!(static FOO: Foo = Foo);
|
||||
thread_local!(static BAR: Bar = Bar(1));
|
||||
thread_local!(static BAZ: Baz = Baz);
|
||||
Loading…
Reference in New Issue
Block a user