From: Eric Biggers Date: Sun, 10 Mar 2013 19:51:21 +0000 (-0500) Subject: Skip tests on Windows builds X-Git-Tag: v1.3.0~36 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=b3f9603319e1b9c674460f3d864808d272c11338 Skip tests on Windows builds --- diff --git a/Makefile.am b/Makefile.am index ca3c1d3b..84360b3a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -155,5 +155,13 @@ if WITH_NTFS_3G dist_check_SCRIPTS += tests/test-imagex-ntfs endif +if WINDOWS_BUILD +TESTS = +else +# TODO: The tests need to be re-written for Windows builds. One issue (that +# applies to both test-imagex and test-imagex-capture_and_apply.) is that +# Cygwin's 'ln -s' will create some sort of regular file with special contents +# rather than a reparse point. TESTS = $(dist_check_SCRIPTS) +endif