@@ -733,6 +733,7 @@ await CliTester.Run(new RunConfiguration[]
733
733
$ "start --port { _funcHostPort } --verbose --runtime inproc8"
734
734
} ,
735
735
ExpectExit = true ,
736
+ ExitInError = true ,
736
737
ErrorContains = [ "Failed to locate the inproc8 model host" ] ,
737
738
Test = async ( workingDir , p , _ ) =>
738
739
{
@@ -766,6 +767,7 @@ await CliTester.Run(new RunConfiguration[]
766
767
$ "start --port { _funcHostPort } --verbose"
767
768
} ,
768
769
ExpectExit = true ,
770
+ ExitInError = true ,
769
771
ErrorContains = [ "Failed to locate the inproc8 model host" ] ,
770
772
Test = async ( workingDir , p , _ ) =>
771
773
{
@@ -885,6 +887,7 @@ await CliTester.Run(new RunConfiguration[]
885
887
$ "start --port { _funcHostPort } --verbose"
886
888
} ,
887
889
ExpectExit = false ,
890
+ ExitInError = true ,
888
891
ErrorContains = [ "Failed to locate the inproc6 model host at" ] ,
889
892
Test = async ( workingDir , p , _ ) =>
890
893
{
@@ -918,6 +921,7 @@ await CliTester.Run(new RunConfiguration[]
918
921
$ "start --port { _funcHostPort } --verbose --runtime inproc6"
919
922
} ,
920
923
ExpectExit = false ,
924
+ ExitInError = true ,
921
925
ErrorContains = [ "Failed to locate the inproc6 model host at" ] ,
922
926
Test = async ( workingDir , p , _ ) =>
923
927
{
@@ -999,7 +1003,8 @@ await CliTester.Run(new RunConfiguration[]
999
1003
{
1000
1004
$ "start --port { _funcHostPort } --verbose --runtime inproc6"
1001
1005
} ,
1002
- ExpectExit = false ,
1006
+ ExpectExit = true ,
1007
+ ExitInError = true ,
1003
1008
ErrorContains = [ "The runtime argument value provided, 'inproc6', is invalid. The provided value is only valid for the worker runtime 'dotnet'." ] ,
1004
1009
Test = async ( workingDir , p , _ ) =>
1005
1010
{
@@ -1033,6 +1038,7 @@ await CliTester.Run(new RunConfiguration[]
1033
1038
$ "start --port { _funcHostPort } --verbose --runtime inproc8"
1034
1039
} ,
1035
1040
ExpectExit = false ,
1041
+ ExitInError = true ,
1036
1042
ErrorContains = [ "The runtime argument value provided, 'inproc8', is invalid. The provided value is only valid for the worker runtime 'dotnet'." ] ,
1037
1043
Test = async ( workingDir , p , _ ) =>
1038
1044
{
@@ -1066,6 +1072,7 @@ await CliTester.Run(new RunConfiguration[]
1066
1072
$ "start --port { _funcHostPort } --verbose --runtime inproc8"
1067
1073
} ,
1068
1074
ExpectExit = false ,
1075
+ ExitInError = true ,
1069
1076
ErrorContains = [ "The runtime argument value provided, 'inproc8', is invalid. For the 'inproc8' runtime, the 'FUNCTIONS_INPROC_NET8_ENABLED' environment variable must be set. See https://aka.ms/azure-functions/dotnet/net8-in-process." ] ,
1070
1077
Test = async ( workingDir , p , _ ) =>
1071
1078
{
@@ -1099,6 +1106,7 @@ await CliTester.Run(new RunConfiguration[]
1099
1106
$ "start --port { _funcHostPort } --verbose --runtime default"
1100
1107
} ,
1101
1108
ExpectExit = false ,
1109
+ ExitInError = true ,
1102
1110
ErrorContains = [ "The runtime argument value provided, 'default', is invalid. The provided value is only valid for the worker runtime 'dotnetIsolated'." ] ,
1103
1111
Test = async ( workingDir , p , _ ) =>
1104
1112
{
@@ -1132,6 +1140,7 @@ await CliTester.Run(new RunConfiguration[]
1132
1140
$ "start --port { _funcHostPort } --verbose --runtime default"
1133
1141
} ,
1134
1142
ExpectExit = false ,
1143
+ ExitInError = true ,
1135
1144
ErrorContains = [ "The runtime argument value provided, 'default', is invalid. The provided value is only valid for the worker runtime 'dotnetIsolated'." ] ,
1136
1145
Test = async ( workingDir , p , _ ) =>
1137
1146
{
@@ -1165,6 +1174,7 @@ await CliTester.Run(new RunConfiguration[]
1165
1174
$ "start --port { _funcHostPort } --verbose --runtime inproc6"
1166
1175
} ,
1167
1176
ExpectExit = false ,
1177
+ ExitInError = true ,
1168
1178
ErrorContains = [ "The runtime argument value provided, 'inproc6', is invalid. For the 'inproc6' runtime, the 'FUNCTIONS_INPROC_NET8_ENABLED' environment variable cannot be be set. See https://aka.ms/azure-functions/dotnet/net8-in-process." ] ,
1169
1179
Test = async ( workingDir , p , _ ) =>
1170
1180
{
@@ -1199,6 +1209,7 @@ await CliTester.Run(new RunConfiguration[]
1199
1209
$ "start --port { _funcHostPort } --verbose --runtime inproc6"
1200
1210
} ,
1201
1211
ExpectExit = false ,
1212
+ ExitInError = true ,
1202
1213
ErrorContains = [ "The runtime argument value provided, 'inproc6', is invalid. The provided value is only valid for the worker runtime 'dotnet'." ] ,
1203
1214
Test = async ( workingDir , p , _ ) =>
1204
1215
{
@@ -1233,6 +1244,7 @@ await CliTester.Run(new RunConfiguration[]
1233
1244
$ "start --port { _funcHostPort } --verbose --runtime inproc8"
1234
1245
} ,
1235
1246
ExpectExit = false ,
1247
+ ExitInError = true ,
1236
1248
ErrorContains = [ "The runtime argument value provided, 'inproc8', is invalid. The provided value is only valid for the worker runtime 'dotnet'." ] ,
1237
1249
Test = async ( workingDir , p , _ ) =>
1238
1250
{
0 commit comments