*tests/date/date.pl: Add the test case.
Add test case for https://github.com/uutils/coreutils/issues/10800
to verify `date -u -d '10:30 UTC-05'` converts to 15:30 UTC.
['paren-5', "-d '((nested))2026-01-05' -u +'%Y-%m-%d'",
{OUT=>"2026-01-05"}],
['paren-6', "-d '((nested)2026-01-05)' +'%H:%M:%S'", {OUT=>"00:00:00"}],
+
+ # Test timezone conversion with -u -d flag
+ # "10:30 UTC-05" should convert to "15:30 UTC", not "10:30 UTC"
+ ['tz-conversion-est', "-u -d '10:30 UTC-05' +'%H:%M'", {OUT=>"15:30"}],
);
# Repeat the cross-dst test, using Jan 1, 2005 and every interval from 1..364.