Merge pull request #7414 from avagin:arm64-ptrace-syscall-tests

PiperOrigin-RevId: 442870785
This commit is contained in:
gVisor bot
2022-04-19 11:50:47 -07:00
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -135,6 +135,12 @@ steps:
label: ":toolbox: System call tests"
command: make syscall-tests
parallelism: 20
- <<: *common
label: ":muscle: System call tests (ARM64)"
command: make BAZEL_OPTIONS=--test_tag_filters=runsc_ptrace syscall-tests
parallelism: 10
agents:
queue: "arm64"
# Integration tests.
- <<: *common
+1 -1
View File
@@ -195,7 +195,7 @@ build = $(call header,BUILD $(1)) && $(call build_paths,$(1),echo {})
copy = $(call header,COPY $(1) $(2)) && $(call build_paths,$(1),cp -fa {} $(2))
run = $(call header,RUN $(1) $(2)) && $(call build_paths,$(1),{} $(2))
sudo = $(call header,SUDO $(1) $(2)) && $(call build_paths,$(1),sudo -E {} $(2))
test = $(call header,TEST $(1)) && $(call wrapper,$(BAZEL) test $(TEST_OPTIONS) $(1))
test = $(call header,TEST $(1)) && $(call wrapper,$(BAZEL) test $(BAZEL_OPTIONS) $(TEST_OPTIONS) $(1))
sudocopy = $(call header,COPY $(1) $(2)) && $(call build_paths,$(1),sudo cp -fa {} $(2))
clean: ## Cleans the bazel cache.