aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGaius Mulley <gaiusmod2@gmail.com>2022-12-18 10:04:02 +0000
committerGaius Mulley <gaiusmod2@gmail.com>2022-12-18 10:04:02 +0000
commit0b2428ee8305188500e4f08e088a430500f1ad9e (patch)
tree7155d63c74a9975ed98a460a42013327df6f9a1e /gcc
parent09710f9934969dcb07131e1ed78b72e648123a3a (diff)
downloadgcc-0b2428ee8305188500e4f08e088a430500f1ad9e.zip
gcc-0b2428ee8305188500e4f08e088a430500f1ad9e.tar.gz
gcc-0b2428ee8305188500e4f08e088a430500f1ad9e.tar.bz2
PR-108122 Reduce sleep times in gm2/pimcoroutines/run/pass/testtime.mod
Change time unit to 1 jiffy (with respect to TimerHandler.def) rather than a second. gcc/testsuite/ChangeLog: * gm2/pimcoroutines/run/pass/testtime.mod: Reduce sleep times in the test by a factor of 25. Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gm2/pimcoroutines/run/pass/testtime.mod48
1 files changed, 26 insertions, 22 deletions
diff --git a/gcc/testsuite/gm2/pimcoroutines/run/pass/testtime.mod b/gcc/testsuite/gm2/pimcoroutines/run/pass/testtime.mod
index fa43163..2e770ae 100644
--- a/gcc/testsuite/gm2/pimcoroutines/run/pass/testtime.mod
+++ b/gcc/testsuite/gm2/pimcoroutines/run/pass/testtime.mod
@@ -1,4 +1,4 @@
-(* Copyright (C) 2005-2020
+(* Copyright (C) 2005-2022
Free Software Foundation, Inc. *)
(* This file is part of GNU Modula-2.
@@ -31,54 +31,58 @@ FROM SYSTEM IMPORT ADR ;
FROM libc IMPORT write, printf ;
+CONST
+ TicksPerTimeUnit = 1 ;
+
+
(*
- OneSecond -
+ OneUnit -
*)
-PROCEDURE OneSecond ;
+PROCEDURE OneUnit ;
VAR
n: CARDINAL ;
BEGIN
OldInts := TurnInterrupts (MIN (PROTECTION)) ;
- printf ("1 second process has come to life\n");
+ printf ("1 unit process has come to life\n");
n := 0 ;
LOOP
- Sleep (1*TicksPerSecond) ;
+ Sleep (1*TicksPerTimeUnit) ;
INC (n) ;
- printf ("%d seconds\n", n);
+ printf ("%d units\n", n);
END
-END OneSecond ;
+END OneUnit ;
(*
- FourSeconds -
+ FourUnits -
*)
-PROCEDURE FourSeconds ;
+PROCEDURE FourUnits ;
VAR
n: CARDINAL ;
BEGIN
OldInts := TurnInterrupts (MIN (PROTECTION)) ;
- printf ("4 seconds process has come to life\n");
+ printf ("4 units process has come to life\n");
n := 0 ;
LOOP
- Sleep (4*TicksPerSecond) ;
+ Sleep (4*TicksPerTimeUnit) ;
INC (n) ;
- printf ("4 second alarm (%d occurance)\n", n);
+ printf ("4 units alarm (%d occurance)\n", n);
END
-END FourSeconds ;
+END FourUnits ;
(*
- SixSeconds -
+ SixUnits -
*)
-PROCEDURE SixSeconds ;
+PROCEDURE SixUnits ;
VAR
n: CARDINAL ;
BEGIN
OldInts := TurnInterrupts (MAX (PROTECTION)) ;
- printf ("6 seconds process has come to life\n");
+ printf ("6 units process has come to life\n");
n := 0 ;
LOOP
Timeout := ArmEvent (6*TicksPerSecond) ;
@@ -87,10 +91,10 @@ BEGIN
WriteString ('...someone cancelled it...')
ELSE
INC (n) ;
- printf ("6 second alarm (%d occurance)\n", n)
+ printf ("6 unit alarm (%d occurance)\n", n)
END
END
-END SixSeconds ;
+END SixUnits ;
CONST
@@ -107,10 +111,10 @@ BEGIN
printf ("now to create three processes...\n") ;
- p1 := Resume (InitProcess (OneSecond , StackSize, '1')) ;
- p4 := Resume (InitProcess (FourSeconds, StackSize, '4')) ;
- p6 := Resume (InitProcess (SixSeconds , StackSize, '6')) ;
+ p1 := Resume (InitProcess (OneUnit , StackSize, '1')) ;
+ p4 := Resume (InitProcess (FourUnits, StackSize, '4')) ;
+ p6 := Resume (InitProcess (SixUnits , StackSize, '6')) ;
- Sleep (20*TicksPerSecond) ;
+ Sleep (20*TicksPerTimeUnit) ;
printf ("successfully completed, finishing now.\n")
END testtime.