Merge pull request #1257 from ethomson/crlf_test_fix add a git config, don't run crlf tests on non-win32
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
diff --git a/tests-clar/checkout/crlf.c b/tests-clar/checkout/crlf.c
index cf7521e..259e91c 100644
--- a/tests-clar/checkout/crlf.c
+++ b/tests-clar/checkout/crlf.c
@@ -45,6 +45,7 @@ static void set_core_autocrlf_to(bool value)
void test_checkout_crlf__detect_crlf_autocrlf_false(void)
{
+#ifdef GIT_WIN32
git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT;
opts.checkout_strategy = GIT_CHECKOUT_SAFE_CREATE;
@@ -53,10 +54,12 @@ void test_checkout_crlf__detect_crlf_autocrlf_false(void)
git_checkout_head(g_repo, &opts);
test_file_contents("./crlf/all-lf", ALL_LF_TEXT_RAW);
+#endif
}
void test_checkout_crlf__autocrlf_false_index_size_is_unfiltered_size(void)
{
+#ifdef GIT_WIN32
git_index *index;
const git_index_entry *entry;
git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT;
@@ -72,10 +75,12 @@ void test_checkout_crlf__autocrlf_false_index_size_is_unfiltered_size(void)
cl_assert(entry->file_size == strlen(ALL_LF_TEXT_RAW));
git_index_free(index);
+#endif
}
void test_checkout_crlf__detect_crlf_autocrlf_true(void)
{
+#ifdef GIT_WIN32
git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT;
opts.checkout_strategy = GIT_CHECKOUT_SAFE_CREATE;
@@ -84,10 +89,12 @@ void test_checkout_crlf__detect_crlf_autocrlf_true(void)
git_checkout_head(g_repo, &opts);
test_file_contents("./crlf/all-lf", ALL_LF_TEXT_AS_CRLF);
+#endif
}
void test_checkout_crlf__autocrlf_true_index_size_is_filtered_size(void)
{
+#ifdef GIT_WIN32
git_index *index;
const git_index_entry *entry;
git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT;
@@ -103,4 +110,5 @@ void test_checkout_crlf__autocrlf_true_index_size_is_filtered_size(void)
cl_assert(entry->file_size == strlen(ALL_LF_TEXT_AS_CRLF));
git_index_free(index);
+#endif
}
diff --git a/tests-clar/resources/crlf/.gitted/config b/tests-clar/resources/crlf/.gitted/config
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests-clar/resources/crlf/.gitted/config