From 72e426fc7862db258d3c42b0701e7fbfdf671575 Mon Sep 17 00:00:00 2001 From: godofredoc Date: Fri, 14 Jan 2022 15:55:19 -0800 Subject: [PATCH] Explicitly set verbose flag for customer testing. (#96634) --- dev/customer_testing/ci.bat | 2 +- dev/customer_testing/ci.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/customer_testing/ci.bat b/dev/customer_testing/ci.bat index d6feb0f761..d8669892d2 100644 --- a/dev/customer_testing/ci.bat +++ b/dev/customer_testing/ci.bat @@ -16,4 +16,4 @@ CD ..\customer_testing CMD /S /C "IF EXIST "..\..\bin\cache\pkg\tests\" RMDIR /S /Q ..\..\bin\cache\pkg\tests" git clone https://github.com/flutter/tests.git ..\..\bin\cache\pkg\tests FOR /F "usebackq tokens=*" %%a IN (`dart --enable-asserts ..\tools\bin\find_commit.dart ..\..\bin\cache\pkg\tests`) DO git -C ..\..\bin\cache\pkg\tests checkout %%a -dart --enable-asserts run_tests.dart --skip-on-fetch-failure --skip-template ..\..\bin\cache\pkg\tests\registry\*.test +dart --enable-asserts run_tests.dart --verbose --skip-on-fetch-failure --skip-template ..\..\bin\cache\pkg\tests\registry\*.test diff --git a/dev/customer_testing/ci.sh b/dev/customer_testing/ci.sh index 17f04b9978..495b21c6fd 100755 --- a/dev/customer_testing/ci.sh +++ b/dev/customer_testing/ci.sh @@ -34,4 +34,4 @@ git clone https://github.com/flutter/tests.git ../../bin/cache/pkg/tests git -C ../../bin/cache/pkg/tests checkout `dart --enable-asserts ../tools/bin/find_commit.dart ../../bin/cache/pkg/tests` # Finally, run the tests. -dart --enable-asserts run_tests.dart --skip-on-fetch-failure --skip-template ../../bin/cache/pkg/tests/registry/*.test +dart --enable-asserts run_tests.dart --verbose --skip-on-fetch-failure --skip-template ../../bin/cache/pkg/tests/registry/*.test