From 8739d02408b4e215bb419ae6dfbe17a76b5d0518 Mon Sep 17 00:00:00 2001 From: Mike Shal Date: Fri, 15 Sep 2023 20:42:54 -0700 Subject: [PATCH] Remove cygdrive from Windows test paths. Something changed where ssh no longer uses the /cygdrive prefix, and I've now removed it from /etc/fstab on my Windows test machine. These test cases need to use the non-cygdrive path. --- test/t4205-full-deps6.sh | 2 +- test/t4208-full-deps-external.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t4205-full-deps6.sh b/test/t4205-full-deps6.sh index f351d7cb4..974112a9b 100755 --- a/test/t4205-full-deps6.sh +++ b/test/t4205-full-deps6.sh @@ -45,7 +45,7 @@ touch foo.c bar.c update if [ "$in_windows" = "1" ]; then - prefix="`echo $PWD | sed 's,/cygdrive/c,c:,'`" + prefix="`echo $PWD | sed 's,/c,c:,'`" else prefix="$PWD" fi diff --git a/test/t4208-full-deps-external.sh b/test/t4208-full-deps-external.sh index 495b0de29..b6636157b 100755 --- a/test/t4208-full-deps-external.sh +++ b/test/t4208-full-deps-external.sh @@ -55,7 +55,7 @@ HERE update if [ "$in_windows" = "1" ]; then - prefix="`echo $root | sed 's,/cygdrive/c,c:,'`" + prefix="`echo $root | sed 's,/c,c:,'`" else prefix="$root" fi