From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Sixt Subject: [PATCH 00/11] Increase test coverage on Windows by removing SYMLINKS from many tests Date: Sat, 1 Jun 2013 11:34:19 +0200 Message-ID: To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sat Jun 01 11:34:50 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UiiD3-00022T-Nc for gcvg-git-2@plane.gmane.org; Sat, 01 Jun 2013 11:34:50 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756692Ab3FAJei (ORCPT ); Sat, 1 Jun 2013 05:34:38 -0400 Received: from bsmtp1.bon.at ([213.33.87.15]:34512 "EHLO bsmtp.bon.at" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751566Ab3FAJef (ORCPT ); Sat, 1 Jun 2013 05:34:35 -0400 Received: from dx.sixt.local (unknown [93.83.142.38]) by bsmtp.bon.at (Postfix) with ESMTP id 9943110011 for ; Sat, 1 Jun 2013 11:34:32 +0200 (CEST) Received: from dx.sixt.local (localhost [127.0.0.1]) by dx.sixt.local (Postfix) with ESMTP id AD42519F480 for ; Sat, 1 Jun 2013 11:34:31 +0200 (CEST) X-Mailer: git-send-email 1.8.3.rc1.32.g8b61cbb Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Many tests that involve symbolic links actually check only whether our algorithms are correct by investigating the contents of the object database and the index. Only some of them check the filesystem. This series introduces a function test_ln_s_add that inserts a symbolic link in the index even if the filesystem does not support symbolic links. By using this function, many more tests can be run when the filesystem does not have symblic links, aka Windows. The patches touch a number of test files that do not follow the modern style. But I modernized only the two test files where the subsequent change to use test_ln_s_add would otherwise be rather inconvenient or obscure. Johannes Sixt (11): test-chmtime: Fix exit code on Windows t2100: modernize style and unroll a loop of test cases t3010: modernize style tests: introduce test_ln_s and test_ln_s_add tests: use test_ln_s_add to remove SYMLINKS prerequisite (trivial cases) t0000: use test_ln_s_add to remove SYMLINKS prerequisite t2100: use test_ln_s_add to remove SYMLINKS prerequisite t3030: use test_ln_s_add to remove SYMLINKS prerequisite t3100: use test_ln_s_add to remove SYMLINKS prerequisite t3509, t4023, t4114: use test_ln_s_add to remove SYMLINKS prerequisite t6035: use test_ln_s_add to remove SYMLINKS prerequisite t/README | 17 +++++ t/t0000-basic.sh | 39 +++--------- t/t1004-read-tree-m-u-wf.sh | 7 +-- t/t2001-checkout-cache-clash.sh | 7 +-- t/t2003-checkout-cache-mkdir.sh | 8 +-- t/t2004-checkout-cache-temp.sh | 5 +- t/t2007-checkout-symlink.sh | 12 ++-- t/t2021-checkout-overwrite.sh | 12 ++-- t/t2100-update-cache-badpath.sh | 71 +++++++++++---------- t/t2200-add-update.sh | 5 +- t/t3000-ls-files-others.sh | 7 +-- t/t3010-ls-files-killed-modified.sh | 112 +++++++++++++++------------------ t/t3030-merge-recursive.sh | 62 ++++++++---------- t/t3100-ls-tree-restrict.sh | 42 +++++-------- t/t3509-cherry-pick-merge-df.sh | 12 ++-- t/t3700-add.sh | 15 ++--- t/t3903-stash.sh | 39 ++++++++---- t/t4008-diff-break-rewrite.sh | 12 ++-- t/t4011-diff-symlink.sh | 23 ++++--- t/t4023-diff-rename-typechange.sh | 28 ++++----- t/t4030-diff-textconv.sh | 8 +-- t/t4114-apply-typechange.sh | 29 +++++---- t/t4115-apply-symlink.sh | 10 ++- t/t4122-apply-symlink-inside.sh | 8 +-- t/t6035-merge-dir-to-symlink.sh | 73 +++++++++++++-------- t/t7001-mv.sh | 18 +++--- t/t7607-merge-overwrite.sh | 5 +- t/t8006-blame-textconv.sh | 14 ++--- t/t8007-cat-file-textconv.sh | 10 ++- t/t9350-fast-export.sh | 5 +- t/t9500-gitweb-standalone-no-errors.sh | 15 ++--- t/test-lib-functions.sh | 30 +++++++++ test-chmtime.c | 8 +-- 33 files changed, 391 insertions(+), 377 deletions(-) -- 1.8.3.rc1.32.g8b61cbb