From b3f9603319e1b9c674460f3d864808d272c11338 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 10 Mar 2013 14:51:21 -0500 Subject: [PATCH] Skip tests on Windows builds --- Makefile.am | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 2.43.0