diff options
Diffstat (limited to 'test/968-default-partial-compile-gen/build.py')
-rw-r--r-- | test/968-default-partial-compile-gen/build.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/968-default-partial-compile-gen/build.py b/test/968-default-partial-compile-gen/build.py index e4416ec0bd..0200c9958c 100644 --- a/test/968-default-partial-compile-gen/build.py +++ b/test/968-default-partial-compile-gen/build.py @@ -13,8 +13,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from art_build_rules import build_run_test import os -if os.environ["BUILD_MODE"] != "jvm": - build_run_test(experimental="default-methods") + +def build(ctx): + if os.environ["BUILD_MODE"] != "jvm": + ctx.default_build(experimental="default-methods") |