From 7697e54176ccab22ed6d4597d7256e9a1e6ff202 Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Wed, 11 Dec 2013 15:02:20 -0800 Subject: Test cancel from indexer progress callback This adds tests that try canceling an indexer operation from within the progress callback. After writing the tests, I wanted to run this under valgrind and had a number of errors in that situation because mmap wasn't working. I added a CMake option to force emulation of mmap and consolidated the Amiga-specific code into that new place (so we don't actually need separate Amiga code now, just have to turn on -DNO_MMAP). Additionally, I made the indexer code propagate error codes more reliably than it used to. --- src/unix/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unix/map.c') diff --git a/src/unix/map.c b/src/unix/map.c index 7de99c99d..e62ab3e76 100644 --- a/src/unix/map.c +++ b/src/unix/map.c @@ -6,7 +6,7 @@ */ #include -#ifndef GIT_WIN32 +#if !defined(GIT_WIN32) && !defined(NO_MMAP) #include "map.h" #include -- cgit v1.2.1