You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
600 B

/* When converting an internal time value to local time, the DST offset is
* determine based on the UTC time (i.e. DaylightSavingTA(t) is called, and
* 't' is internal (UTC) time value).
*
* However, when converting back from local time to an internal time value,
* DayLightSavingTA(t) is determined based on the local time (i.e.
* DaylightSavingTA(t) is called, and 't' is a local time value).
*
* This has the impact, mentioned in E5.1 Section 15.9.1.9, that
* UTC(LocalTime(t)) == t is not necessarily always true.
*
* FIXME: test case for this?
*/
/*---
{
"skip": true
}
---*/