Shrink smoke test case, turn off goldctl.

Change-Id: Id481a213842f5708868ace81bc6a9a67e68deded
Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/54930
Reviewed-by: Matan Lurey <matanl@google.com>
Commit-Queue: Zach Anderson <zra@google.com>
Reviewed-by: Zach Anderson <zra@google.com>
diff --git a/recipes/engine/framework_smoke.expected/basic.json b/recipes/engine/framework_smoke.expected/basic.json
index 65eb819..d5cad05 100644
--- a/recipes/engine/framework_smoke.expected/basic.json
+++ b/recipes/engine/framework_smoke.expected/basic.json
@@ -1134,7 +1134,9 @@
       "--local-engine=[CACHE]/builder/src/out/host_debug_unopt",
       "--local-engine-host=host_debug_unopt",
       "-j",
-      "8"
+      "8",
+      "-x",
+      "reduced-test-set"
     ],
     "cwd": "[CACHE]/flutter/packages/flutter",
     "env": {
@@ -1150,6 +1152,7 @@
       "FLUTTER_PREBUILT_DART_SDK": "True",
       "FLUTTER_TEST_OUTPUTS_DIR": "[CLEANUP]/flutter_logs_dir",
       "GIT_BRANCH": "",
+      "GOLDCTL": null,
       "LUCI_BRANCH": "",
       "LUCI_CI": "True",
       "LUCI_CLEANUP": "[CLEANUP]",
diff --git a/recipes/engine/framework_smoke.expected/no_goma.json b/recipes/engine/framework_smoke.expected/no_goma.json
index 65eb819..d5cad05 100644
--- a/recipes/engine/framework_smoke.expected/no_goma.json
+++ b/recipes/engine/framework_smoke.expected/no_goma.json
@@ -1134,7 +1134,9 @@
       "--local-engine=[CACHE]/builder/src/out/host_debug_unopt",
       "--local-engine-host=host_debug_unopt",
       "-j",
-      "8"
+      "8",
+      "-x",
+      "reduced-test-set"
     ],
     "cwd": "[CACHE]/flutter/packages/flutter",
     "env": {
@@ -1150,6 +1152,7 @@
       "FLUTTER_PREBUILT_DART_SDK": "True",
       "FLUTTER_TEST_OUTPUTS_DIR": "[CLEANUP]/flutter_logs_dir",
       "GIT_BRANCH": "",
+      "GOLDCTL": null,
       "LUCI_BRANCH": "",
       "LUCI_CI": "True",
       "LUCI_CLEANUP": "[CLEANUP]",
diff --git a/recipes/engine/framework_smoke.py b/recipes/engine/framework_smoke.py
index 3809b83..b755f9e 100644
--- a/recipes/engine/framework_smoke.py
+++ b/recipes/engine/framework_smoke.py
@@ -88,6 +88,7 @@
       )
   # Run framework packages test
   with api.step.nest('Framework test'):
+    env['GOLDCTL'] = None
     with api.context(env=env, env_prefixes=env_prefixes,
                      cwd=flutter_checkout_path.join('packages', 'flutter')):
       api.step(
@@ -98,6 +99,8 @@
               '--local-engine-host=host_debug_unopt',
               '-j',
               '8',
+              '-x',
+              'reduced-test-set'
           ]
       )