]> gitweb.factorcode.org Git - factor.git/commitdiff
alien.libraries.finder: Allow library to match just by name. Related to #1099.
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 6 Jun 2015 00:05:57 +0000 (17:05 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 6 Jun 2015 00:05:57 +0000 (17:05 -0700)
Add some more unit tests. Fix a typo fidner->finder.

basis/alien/libraries/finder/linux/linux-tests.factor
basis/alien/libraries/finder/linux/linux.factor

index 416217560f39e71d4e6ead7c0038d0567870bb17..3b5bc2cb39d249456607afbfc14f4ea27234ece4 100644 (file)
@@ -1,5 +1,10 @@
-USING: alien.libraries.finder sequences tools.test ;
-IN: alien.libraries.fidner.linux
+USING: alien.libraries.finder sequences tools.test
+alien.libraries.finder.linux.private ;
+IN: alien.libraries.finder.linux
 
 { t } [ "libm.so" "m" find-library subseq? ] unit-test
 { t } [ "libc.so" "c" find-library subseq? ] unit-test
+
+{ t } [ "libSDL" { "libSDL-1.2.so.0" f f } name-matches? ] unit-test
+{ t } [ "libSDL-1" { "libSDL-1.2.so.0" f f } name-matches? ] unit-test
+{ t } [ "libSDL-1.2" { "libSDL-1.2.so.0" f f } name-matches? ] unit-test
index 406cb9a41e582199006760829e8839099a5c6b4c..234d688526a72b6763fcedc8b4a17fbe1f868b67 100644 (file)
@@ -32,7 +32,7 @@ CONSTANT: mach-map {
     mach-map cpu of { "libc6" } or ;
 
 : name-matches? ( lib triple -- ? )
-    first swap ?head [ ?first CHAR: . = ] [ drop f ] if ;
+    first swap ?head [ ?first ".-" member? ] [ drop f ] if ;
 
 : arch-matches? ( lib triple -- ? )
     [ drop ldconfig-arch ] [ second swap subset? ] bi* ;