diff options
author | Benjamin Barenblat <bbaren@google.com> | 2023-06-27 17:03:22 -0400 |
---|---|---|
committer | Benjamin Barenblat <bbaren@google.com> | 2023-06-27 17:21:43 -0400 |
commit | eb6db73f663df4eef48517a4dae62240c90783ff (patch) | |
tree | 921ad1a62cf27c88adbaee136879c07af84da699 /debian | |
parent | b01f2c97c728258cb9286a1b7a91ac0f767be12f (diff) |
Run unit tests out of the `static` directory
136c2572f4d6e6ab8ae02f74d691634874458184 set tests to build in the
`static` directory rather than the `shared` directory. Unfortunately, it
neglected to set the tests to _run_ out of the `static` directory, which
disabled all the tests. Set the tests to run out of `static`.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index c19668f9..70a57c02 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +abseil (20230125.3-2) UNRELEASED; urgency=medium + + * Reenable unit tests, which were accidentally disabled in the previous + version. + + -- Benjamin Barenblat <bbaren@debian.org> Tue, 27 Jun 2023 17:00:12 -0400 + abseil (20230125.3-1) experimental; urgency=medium * New upstream release. (Closes: #1033466, #1034908) diff --git a/debian/rules b/debian/rules index 16d92626..e835a80d 100755 --- a/debian/rules +++ b/debian/rules @@ -53,7 +53,7 @@ override_dh_auto_build: ifeq ($(ABSL_RUN_TESTS),ON) override_dh_auto_test: - dh_auto_test -Bshared $(ABSL_TEST_EXTRA_ARGS) + dh_auto_test -Bstatic $(ABSL_TEST_EXTRA_ARGS) endif override_dh_auto_install: |