Switched from warning to error. Tightened the testcase.
This commit is contained in:
@@ -72,10 +72,10 @@ $(WORKDIR)/limits.$1.$2.prg: limits.c $(DIFF)
|
||||
$(SIM65) $(SIM65FLAGS) $$@ > $(WORKDIR)/limits.$1.out
|
||||
$(DIFF) $(WORKDIR)/limits.$1.out limits.ref
|
||||
|
||||
# here we check if the right warnings are produced
|
||||
# here we check if the right errors are produced
|
||||
$(WORKDIR)/goto.$1.$2.prg: goto.c $(DIFF)
|
||||
$(if $(QUIET),echo misc/goto.$1.$2.prg)
|
||||
$(CL65) -t sim$2 -$1 -o $$@ $$< 2>$(WORKDIR)/goto.$1.out
|
||||
$(NOT) $(CL65) -t sim$2 -$1 -o $$@ $$< 2>$(WORKDIR)/goto.$1.out
|
||||
$(DIFF) $(WORKDIR)/goto.$1.out goto.ref
|
||||
|
||||
# the rest are tests that fail currently for one reason or another
|
||||
|
||||
@@ -61,5 +61,5 @@ int function () {
|
||||
goto end;
|
||||
|
||||
end:
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
goto.c(34): Warning: Goto from line 29 to label 'bad' can result in a trashed stack
|
||||
goto.c(40): Warning: Goto from line 18 to label 'unsafe' can result in a trashed stack
|
||||
goto.c(42): Warning: Goto from line 42 to label 'another' can result in a trashed stack
|
||||
goto.c(47): Warning: Goto from line 47 to label 'bad' can result in a trashed stack
|
||||
goto.c(56): Warning: Goto from line 38 to label 'finish' can result in a trashed stack
|
||||
goto.c(34): Error: Goto from line 29 to label 'bad' can result in a trashed stack
|
||||
goto.c(40): Error: Goto from line 18 to label 'unsafe' can result in a trashed stack
|
||||
goto.c(42): Error: Goto from line 42 to label 'another' can result in a trashed stack
|
||||
goto.c(47): Error: Goto from line 47 to label 'bad' can result in a trashed stack
|
||||
goto.c(56): Error: Goto from line 38 to label 'finish' can result in a trashed stack
|
||||
goto.c(58): Warning: `unused' is defined but never used
|
||||
goto.c(65): Warning: Control reaches end of non-void function
|
||||
|
||||
Reference in New Issue
Block a user