-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates for changes to IANA time zone data.
- Loading branch information
Showing
5 changed files
with
50 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
2024-12-31 Richard Frith-Macdonald <[email protected]> | ||
|
||
* Source/NSTimeZone.m: Add GNUSTEP_BUILTIN_TZ environment variable to | ||
force the use of the IANA standard based time zone files we provide | ||
in the distribution rather than the system supplied time zone data. | ||
This allows us to standardise test behavior across different systems. | ||
* Tests/base/NSCalendarDate/TestInfo: set GNUSTEP_BUILTIN_TZ=1 | ||
* Tests/base/NSCalendarDate/test02.m: Change from using the MET zone | ||
to using CET for tests since the IANA data has changed to make MET | ||
behave aas CET. | ||
* Tests/base/NSTimeZone/TestInfo: set GNUSTEP_BUILTIN_TZ=1 | ||
|
||
2024-11-29 Richard Frith-Macdonald <[email protected]> | ||
|
||
* Source/NSURLProtocol.m: fix leaks due to retain loops. | ||
* Source/Additions/NSObject+GNUstepBase.m: fix issues in new | ||
-trackOownership mechanism to log tracked instances at exist and to | ||
-trackOwnership mechanism to log tracked instances at exist and to | ||
handle cases where we track instances of a class and instances of | ||
its subclasses. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# On unix systems force testing using our inbuilt time zone data. | ||
export GNUSTEP_BUILTIN_TZ=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# On unix systems force testing using our inbuilt time zone data. | ||
export GNUSTEP_BUILTIN_TZ=1 | ||
|