From: Michael Orlitzky Date: Sat, 18 Apr 2020 11:38:03 +0000 (-0400) Subject: sci-mathematics/flintqs: fix the test suite. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=19ae7cd2976370ceb11cad79dd39520b51499523;p=gentoo.git sci-mathematics/flintqs: fix the test suite. I accidentally tested the installed version of QuadraticSieve (which may not exist) instead of the one we just built. Thanks to François Bissey who figured out what I did wrong. Closes: https://bugs.gentoo.org/718006 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Michael Orlitzky --- diff --git a/sci-mathematics/flintqs/flintqs-1.0.ebuild b/sci-mathematics/flintqs/flintqs-1.0.ebuild index 676e751c8bd8..cf8353473ffa 100644 --- a/sci-mathematics/flintqs/flintqs-1.0.ebuild +++ b/sci-mathematics/flintqs/flintqs-1.0.ebuild @@ -28,7 +28,7 @@ src_test() { # The sed command deletes all lines up to the pattern match. # ACTUAL=$(echo 1000000000000000005490000000000000001989 | \ - QuadraticSieve | \ + "${S}"/src/QuadraticSieve | \ sed '0,/FACTORS:/d' | \ sort --numeric | \ uniq |