diff -Nru rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/changelog rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/changelog --- rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/changelog 2023-10-18 19:56:26.000000000 +0000 +++ rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/changelog 2023-10-18 19:56:26.000000000 +0000 @@ -1,4 +1,4 @@ -rustc (1.70.0+dfsg0ubuntu1~bpo2-0ubuntu0.22.04) jammy; urgency=medium +rustc (1.70.0+dfsg0ubuntu1~bpo2-0ubuntu0.22.04.1) jammy; urgency=medium * Backport to Jammy (LP: #2027639) - d/patches: Remove libgit2 system patches diff -Nru rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/patches/ubuntu-jammy-skip-gdb-tests-on-armhf.patch rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/patches/ubuntu-jammy-skip-gdb-tests-on-armhf.patch --- rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/patches/ubuntu-jammy-skip-gdb-tests-on-armhf.patch 2023-10-18 19:56:26.000000000 +0000 +++ rustc-1.70.0+dfsg0ubuntu1~bpo2/debian/patches/ubuntu-jammy-skip-gdb-tests-on-armhf.patch 2023-10-18 19:56:26.000000000 +0000 @@ -2,7 +2,7 @@ Disables armhf gdb tests due to GDB bugs Author: Zixing Liu Forwarded: not-needed -Last-Update: 2023-11-09 +Last-Update: 2023-11-09 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ Index: rustc/vendor/compiletest_rs/src/runtest.rs @@ -15,5 +15,17 @@ + #[cfg(not(target_arch = "arm"))] test_cx.run_debuginfo_gdb_test_no_opt(); + } + +Index: rustc/src/tools/compiletest/src/runtest.rs +=================================================================== +--- rustc.orig/src/tools/compiletest/src/runtest.rs ++++ rustc/src/tools/compiletest/src/runtest.rs +@@ -756,6 +756,7 @@ impl<'test> TestCx<'test> { + + let test_cx = TestCx { config: &config, ..*self }; + ++ #[cfg(not(target_arch = "arm"))] + test_cx.run_debuginfo_gdb_test_no_opt(); }