Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Skip test relying on clock setting
· deaec22f
Andreas Tille
authored
Apr 17, 2019
deaec22f
Add myself to Uploaders
· 7f943a18
Andreas Tille
authored
Apr 17, 2019
7f943a18
Standards-Version: 4.3.0
· 07dab08c
Andreas Tille
authored
Apr 17, 2019
07dab08c
Upload to unstable
· 1105b181
Andreas Tille
authored
Apr 17, 2019
1105b181
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
1105b181
pbcopper (0.4.1+dfsg-3) unstable; urgency=medium
[ Afif Elghraoui ]
* Remove myself from Uploaders
[ Andreas Tille ]
* Skip test relying on clock setting (Thanks for the patch to
Santiago Vila <sanvila@debian.org>)
Closes: #927239
* Add myself to Uploaders
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Wed, 17 Apr 2019 08:21:34 +0200
pbcopper (0.4.1+dfsg-2) unstable; urgency=medium
* Team upload.
...
...
debian/control
View file @
1105b181
Source: pbcopper
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Section: libs
Priority: optional
Build-Depends: debhelper (>= 11~),
dh-exec,
cmake,
libboost-dev
Standards-Version: 4.
2.1
Standards-Version: 4.
3.0
Vcs-Browser: https://salsa.debian.org/med-team/pbcopper
Vcs-Git: https://salsa.debian.org/med-team/pbcopper.git
Homepage: https://github.com/PacificBiosciences/pbcopper
...
...
debian/patches/series
View file @
1105b181
git-version.patch
skip_test_relying_on_clock.patch
debian/patches/skip_test_relying_on_clock.patch
0 → 100644
View file @
1105b181
From: Santiago Vila <sanvila@debian.org>
Date: Tue, 16 Apr 2019 18:18:14 +0000
Bug-Debian: https://bugs.debian.org/927239
Description: Prevent random build failures due to different clock settings
--- a/tests/src/utility/test_Stopwatch.cpp
+++ b/tests/src/utility/test_Stopwatch.cpp
@@ -56,12 +56,12 @@
TEST(Utility_Stopwatch, determines_elaps
ASSERT_LE(elapsed, 30000);
}
-TEST(Utility_Stopwatch, determines_elapsed_time_since_reset)
-{
- Stopwatch s;
- std::this_thread::sleep_for(std::chrono::milliseconds(3));
- s.Reset();
- std::this_thread::sleep_for(std::chrono::milliseconds(3));
- auto elapsed = s.ElapsedMilliseconds();
- ASSERT_FLOAT_EQ(3, elapsed);
-}
+// TEST(Utility_Stopwatch, determines_elapsed_time_since_reset)
+// {
+// Stopwatch s;
+// std::this_thread::sleep_for(std::chrono::milliseconds(3));
+// s.Reset();
+// std::this_thread::sleep_for(std::chrono::milliseconds(3));
+// auto elapsed = s.ElapsedMilliseconds();
+// ASSERT_FLOAT_EQ(3, elapsed);
+// }