modula2: testsuite correction to m2date.mod
This patch corrects the m2date day of the week message. The days of the week array start with Thursday reflecting the 1st Jan 1970. gcc/testsuite/ChangeLog: * gm2/iso/run/pass/m2date.mod (DayName): Reordered. Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>
This commit is contained in:
parent
44efc743ac
commit
c00fcbdab8
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ TYPE
|
|||
|
||||
CONST
|
||||
Debugging = FALSE ;
|
||||
DayName = DayArray { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" } ;
|
||||
(* 1st January 1970 was a Thursday. *)
|
||||
DayName = DayArray { "Thu", "Fri", "Sat", "Sun", "Mon", "Tue", "Wed" } ;
|
||||
MonthName = MonthArray { "Dec", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov" } ;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue