| Index: tests/standalone/io/certificate_test.dart
|
| diff --git a/tests/standalone/io/certificate_test.dart b/tests/standalone/io/certificate_test.dart
|
| index fb5b423504da26cd1db3531122ea4a3078c6564b..b4c8796043aabebb0f664fbe21ee5fe7c1c5bfd1 100644
|
| --- a/tests/standalone/io/certificate_test.dart
|
| +++ b/tests/standalone/io/certificate_test.dart
|
| @@ -21,9 +21,9 @@ void main() {
|
| server.port.toString(),
|
| join(scriptDir, 'pkcert', 'myauthority.pem')]);
|
| }).then((ProcessResult result) {
|
| - if (result.exitCode != 0) {
|
| + if (result.exitCode != 0 || !result.stdout.contains("SUCCESS")) {
|
| print("Client failed with exit code ${result.exitCode}");
|
| - print(" stdout:");
|
| + print(" stdout (expects \"SUCCESS\\n\"):");
|
| print(result.stdout);
|
| print(" stderr:");
|
| print(result.stderr);
|
|
|