git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* GSoC 2024 [RFC PATCH]
@ 2024-03-27 13:04 Aishwarya Narayanan
  2024-03-27 13:30 ` Patrick Steinhardt
  0 siblings, 1 reply; 2+ messages in thread
From: Aishwarya Narayanan @ 2024-03-27 13:04 UTC (permalink / raw)
  To: git, ps

Dear Git Organization,

I hope this email finds you well. I've prepared a patch to address an
issue related to the handling of exit codes in our test suite. The
changes ensure that the exit code of the write_utf16 and write_utf32
functions is properly captured and not suppressed, improving the
reliability of our testing process.
Below are the details of the patch:

---
 t/t0028-working-tree-encoding.sh | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/t/t0028-working-tree-encoding.sh b/t/t0028-working-tree-encoding.sh
index ad151a3467..f372c14bc0 100755
--- a/t/t0028-working-tree-encoding.sh
+++ b/t/t0028-working-tree-encoding.sh
@@ -19,10 +19,13 @@ test_expect_success 'setup test files' '
  echo "*.utf16 text working-tree-encoding=utf-16" >.gitattributes &&
  echo "*.utf16lebom text working-tree-encoding=UTF-16LE-BOM"
>>.gitattributes &&
  printf "$text" >test.utf8.raw &&
- printf "$text" | write_utf16 >test.utf16.raw &&
- printf "$text" | write_utf32 >test.utf32.raw &&
- printf "\377\376"                         >test.utf16lebom.raw &&
- printf "$text" | iconv -f UTF-8 -t UTF-16LE >>test.utf16lebom.raw &&
+ test_utf16_raw=$(printf "$text" | write_utf16) &&
+ test_utf32_raw=$(printf "$text" | write_utf32) &&
+ test_utf16lebom_raw=$(printf "\377\376"; printf "$text" | iconv -f
UTF-8 -t UTF-16LE) &&
+ echo "$test_utf16_raw" > test.utf16.raw &&
+ echo "$test_utf32_raw" > test.utf32.raw &&
+ echo "$test_utf16lebom_raw" > test.utf16lebom.raw &&
+

  # Line ending tests
  printf "one\ntwo\nthree\n" >lf.utf8.raw &&
-- 

I kindly request your review and any remarks or changes you may have.
Please accept my apologies for any mistakes or oversights.

Thank you for your time and attention.

Best regards, Aishwarya Narayanan

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-27 13:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-27 13:04 GSoC 2024 [RFC PATCH] Aishwarya Narayanan
2024-03-27 13:30 ` Patrick Steinhardt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).