Skip to content

Commit e825ab1

Browse files
committed
Fix expected exit codes for Windows/Visual Studio
goto-cl exits with exit code 64 as cl does.
1 parent a338d42 commit e825ab1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
CORE
22
main.c
33

4-
^EXIT=1$
4+
^EXIT=(1|64)$
55
^SIGNAL=0$
66
^CONVERSION ERROR$
77
--
8-
^warning: ignoring
8+
^warning: ignoring

regression/ansi-c/goto_convert_continue/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CORE
22
main.c
33

4-
^EXIT=1$
4+
^EXIT=(1|64)$
55
^SIGNAL=0$
66
^CONVERSION ERROR$
77
--

regression/ansi-c/goto_convert_invalid_goto_label/test.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CORE
22
main.c
33

44
^CONVERSION ERROR$
5-
^EXIT=1$
5+
^EXIT=(1|64)$
66
^SIGNAL=0$
77
--
8-
^warning: ignoring
8+
^warning: ignoring

regression/ansi-c/goto_convert_switch_range_bounds/test.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CORE
22
main.c
33

44
^CONVERSION ERROR$
5-
^EXIT=1$
5+
^EXIT=(1|64)$
66
^SIGNAL=0$
77
--
8-
^warning: ignoring
8+
^warning: ignoring
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
CORE
22
main.c
33

4-
^EXIT=1$
4+
^EXIT=(1|64)$
55
^SIGNAL=0$
66
^PARSING ERROR$
77
--
8-
^warning: ignoring
8+
^warning: ignoring

0 commit comments

Comments
 (0)