Unverified Commit e00241a0 authored by stuartmorgan's avatar stuartmorgan Committed by GitHub

Enable Windows plugin tests (#119345)

* Fix binary path

* Enable in presubmit
parent a2e65f7c
...@@ -4420,7 +4420,6 @@ targets: ...@@ -4420,7 +4420,6 @@ targets:
- .ci.yaml - .ci.yaml
- name: Windows plugin_test_windows - name: Windows plugin_test_windows
bringup: true # New task
recipe: devicelab/devicelab_drone recipe: devicelab/devicelab_drone
timeout: 60 timeout: 60
properties: properties:
......
...@@ -298,7 +298,7 @@ public class $pluginClass: NSObject, FlutterPlugin { ...@@ -298,7 +298,7 @@ public class $pluginClass: NSObject, FlutterPlugin {
break; break;
case 'windows': case 'windows':
if (await exec( if (await exec(
path.join(rootPath, 'build', 'windows', 'plugins', 'plugintest', 'Release', 'plugintest_plugin_test'), path.join(rootPath, 'build', 'windows', 'plugins', 'plugintest', 'Release', 'plugintest_test.exe'),
<String>[], <String>[],
canFail: true, canFail: true,
) != 0) { ) != 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment