]> gitweb.factorcode.org Git - factor.git/commitdiff
macho: Only test the vm-path on MacOS, but still let the macho library work on any...
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 26 Jun 2018 02:58:35 +0000 (19:58 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 26 Jun 2018 06:02:59 +0000 (23:02 -0700)
Also testing TravisCI on a branch without a boot image -- it should use master boot image.

extra/macho/macho-tests.factor

index d2616e8c26cadf62f4bf5f876153e53e9612631c..26cd69830d46bc6dc0c3c8ec143bc5552c4c24f3 100644 (file)
@@ -34,4 +34,6 @@ cpu ppc? [
 ] unless
 
 ! Throw an exception if the struct is not defined/handled
-{ } [ vm-path dylib-exports drop ] unit-test
+os macosx? [
+    { } [ vm-path dylib-exports drop ] unit-test
+] when