From: Jon Seymour Date: Thu, 30 Jun 2005 02:41:55 +0000 (+1000) Subject: [PATCH] Demonstrate broken t6001 test case function X-Git-Tag: v0.99~115 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2ba1beebd37a57ad07c283da67c82847f6cb2ef9;p=git.git [PATCH] Demonstrate broken t6001 test case function Junio discovered a problem where an actual test case break was hidden because pipelines are not handled properly by the test infrastructure in t6001. This patch fixes the broken infrastructure (and demonstrates the break explicitly). A subsequent patch in this series will fix the test case so that it doesn't fail. Signed-off-by: Jon Seymour Signed-off-by: Linus Torvalds --- diff --git a/t/t6001-rev-list-merge-order.sh b/t/t6001-rev-list-merge-order.sh index 8ac77d997..a693c17df 100755 --- a/t/t6001-rev-list-merge-order.sh +++ b/t/t6001-rev-list-merge-order.sh @@ -85,13 +85,12 @@ check_output() { _name=$1 shift 1 - if "$@" | entag > $_name.actual + if eval "$*" | entag > $_name.actual then diff $_name.expected $_name.actual else return 1; fi - } # Turn a reasonable test description into a reasonable test name. @@ -114,7 +113,7 @@ test_output_expect_success() [ $# -eq 2 ] || error "usage: test_output_expect_success description test < $_name.expected - test_expect_success "$_description" "check_output $_name $_test" + test_expect_success "$_description" "check_output $_name \"$_test\"" } # --- end of stuff to move ---