]> git.proxmox.com Git - debcargo-conf.git/commitdiff
cpp-demangle - establish baseline for tests.
authorPeter Michael Green <plugwash@debian.org>
Mon, 2 Jan 2023 18:09:31 +0000 (18:09 +0000)
committerPeter Michael Green <plugwash@debian.org>
Tue, 3 Jan 2023 08:57:47 +0000 (08:57 +0000)
src/cpp-demangle/debian/changelog
src/cpp-demangle/debian/debcargo.toml

index c40e46c88645c9faf8d22fafb09e7b510b67f8ce..72c8e77c48cb7c045b4982b337ed61a41dece0aa 100644 (file)
@@ -4,6 +4,8 @@ rust-cpp-demangle (0.4.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=med
   * Package cpp_demangle 0.4.0 from crates.io using debcargo 2.6.0
   * Update no-fuzzing.patch for new upstream.
   * Allow both clap 3.1 and clap 4.0 for running tests.
+  * Mark tests for the no features case as "broken", the crate requires either
+    the std feature or the alloc feature to build.
 
  -- Peter Michael Green <plugwash@debian.org>  Mon, 02 Jan 2023 10:14:30 +0000
 
index a1f9138116ce97538ffdccd36f5a47269e0c5150..5e930b8c2dd290e538839202e22833044838921e 100644 (file)
@@ -1,3 +1,13 @@
 overlay = "."
 uploaders = ["kpcyrd <git@rxv.cc>"]
 excludes = ["src/bin/**"]
+
+#compile_error!("`alloc` or `std` feature is required for this crate");
+[packages.lib]
+test_is_broken = true
+
+[packages."lib+alloc"]
+test_is_broken = false
+
+[packages."lib+std"]
+test_is_broken = false