aboutsummaryrefslogtreecommitdiff
path: root/consfigurator.asd
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-11-28 14:42:46 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-11-28 19:07:24 -0700
commitb16512b1803e65a987967d407285d2af37a159e3 (patch)
tree87e08892f0a83ed5c1471c8d786fdbd8354fafb5 /consfigurator.asd
parent0c4336893f4781da3abf9390e8a9c3601083e5f3 (diff)
downloadconsfigurator-b16512b1803e65a987967d407285d2af37a159e3.tar.gz
replace usage of UIOP version comparison utilities with our own
DATA.GIT-SNAPSHOT generates version numbers like 2342423.ab09890f2bcd where only the first, purely numerical component is intended for comparison, and the second component is just additional information. UIOP's utilities don't give the correct answers for cases like that; e.g. (uiop:version<= "1.a" "0") => T. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'consfigurator.asd')
-rw-r--r--consfigurator.asd1
1 files changed, 1 insertions, 0 deletions
diff --git a/consfigurator.asd b/consfigurator.asd
index 41c5a65..b49ecab 100644
--- a/consfigurator.asd
+++ b/consfigurator.asd
@@ -106,5 +106,6 @@
(:feature :sbcl (:require #:sb-rt))
(:feature (:not :sbcl) #:rt))
:components ((:file "tests/package")
+ (:file "tests/util")
(:file "tests/property/file"))
:perform (test-op (o c) (symbol-call :consfigurator/tests '#:do-tests)))