@@ -1016,7 +1016,7 @@ def run_benchmark_tests(build_dir):
1016
1016
test_dir = os .path .join (BUILDROOT_DIR , 'flutter' , 'testing' , 'benchmark' )
1017
1017
dart_tests = glob .glob ('%s/test/*_test.dart' % test_dir )
1018
1018
for dart_test_file in dart_tests :
1019
- opts = ['--disable-dart-dev' , dart_test_file ]
1019
+ opts = [dart_test_file ]
1020
1020
run_engine_executable (
1021
1021
build_dir , os .path .join ('dart-sdk' , 'bin' , 'dart' ), None , flags = opts , cwd = test_dir
1022
1022
)
@@ -1114,7 +1114,7 @@ def run_impeller_golden_tests(build_dir: str, require_skia_gold: bool = False):
1114
1114
golden_path = os .path .join ('testing' , 'impeller_golden_tests_output.txt' )
1115
1115
script_path = os .path .join ('tools' , 'dir_contents_diff' , 'bin' , 'dir_contents_diff.dart' )
1116
1116
diff_result = subprocess .run (
1117
- f'{ dart_bin } --disable-dart-dev { script_path } { golden_path } { temp_dir } ' ,
1117
+ f'{ dart_bin } { script_path } { golden_path } { temp_dir } ' ,
1118
1118
check = False ,
1119
1119
shell = True ,
1120
1120
stdout = subprocess .PIPE ,
@@ -1154,7 +1154,7 @@ def run_impeller_golden_tests(build_dir: str, require_skia_gold: bool = False):
1154
1154
1155
1155
with DirectoryChange (harvester_path ):
1156
1156
bin_path = Path ('.' ).joinpath ('bin' ).joinpath ('golden_tests_harvester.dart' )
1157
- run_cmd ([dart_bin , '--disable-dart-dev' , str (bin_path ), temp_dir ])
1157
+ run_cmd ([dart_bin , str (bin_path ), temp_dir ])
1158
1158
1159
1159
1160
1160
def main ():
0 commit comments