From b92f9002404e41ada770a7aba74f134f7188a0cf Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Thu, 2 Nov 2023 12:34:02 -0700 Subject: [PATCH] tests: change the default platfrom from ptrace to systrap PiperOrigin-RevId: 578944483 --- test/runner/defs.bzl | 2 +- tools/bazeldefs/platforms.bzl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl index c8d9a0a9a..dbe6cd894 100644 --- a/test/runner/defs.bzl +++ b/test/runner/defs.bzl @@ -98,7 +98,7 @@ def _syscall_test( tags = [] # Add the full_platform and file access in a tag to make it easier to run - # all the tests on a specific flavor. Use --test_tag_filters=runsc_ptrace,file_shared. + # all the tests on a specific flavor. Use --test_tag_filters=runsc_systrap,file_shared. tags = list(tags) tags += [full_platform, "file_" + file_access] diff --git a/tools/bazeldefs/platforms.bzl b/tools/bazeldefs/platforms.bzl index fefb47201..13de70d34 100644 --- a/tools/bazeldefs/platforms.bzl +++ b/tools/bazeldefs/platforms.bzl @@ -41,4 +41,4 @@ platform_capabilities = { }, } -default_platform = "ptrace" +default_platform = "systrap"