# Support files for Debian bug #1136461:
# _qt6-base: changes in documentation when tests are not run during build_

https://bugs.debian.org/1136461

* `build-dir-1base_2.tar.zst`: Snapshot of the build dir of `qt6-base`
   at the end of the build. 
* `build-dir-1base_3.tar.zst`: Snapshot after a second build.
* `build-dir-diff-1_2-1_3.diff`: Differences between the two build
   directories (includes ANSI color codes, use `less -R`)

Both snapshots have been built using:

```
export TMPDIR=/var/tmp
sbuild --verbose --debbuildopts=--jobs=1 \
    --finished-build-commands="tar -cvf /tmp/build-dir.tar /build" \
    --post-build-commands="cp %SBUILD_CHROOT_DIR/tmp/build-dir.tar /var/tmp/" 
```

The following patch has been used to force the problematic
behavior described in the bug report:

```
diff --git a/debian/rules b/debian/rules
index be51fec..acb45b9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -147,4 +147,4 @@ execute_after_dh_shlibdeps-arch:
        echo libssl:Depends=$(sslpkgname) >> debian/libqt6network6.substvars
 
 # Do not run tests when building the documentation
-override_dh_auto_test-indep:
+override_dh_auto_test:
```
