From 7fdb8fcab5a01a4faf7cb8ac13447498d02bade9 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 25 Jun 2018 19:58:35 -0700 Subject: [PATCH] macho: Only test the vm-path on MacOS, but still let the macho library work on any platform. Also testing TravisCI on a branch without a boot image -- it should use master boot image. --- extra/macho/macho-tests.factor | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extra/macho/macho-tests.factor b/extra/macho/macho-tests.factor index d2616e8c26..26cd69830d 100644 --- a/extra/macho/macho-tests.factor +++ b/extra/macho/macho-tests.factor @@ -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