summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/workloads/syscall/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/workloads/syscall/BUILD')
-rw-r--r--benchmarks/workloads/syscall/BUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/benchmarks/workloads/syscall/BUILD b/benchmarks/workloads/syscall/BUILD
deleted file mode 100644
index 5100cbb21..000000000
--- a/benchmarks/workloads/syscall/BUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-load("//benchmarks:defs.bzl", "py_library", "py_test", "requirement")
-load("@rules_pkg//:pkg.bzl", "pkg_tar")
-
-package(
- default_visibility = ["//benchmarks:__subpackages__"],
- licenses = ["notice"],
-)
-
-py_library(
- name = "syscall",
- srcs = ["__init__.py"],
-)
-
-py_test(
- name = "syscall_test",
- srcs = ["syscall_test.py"],
- python_version = "PY3",
- deps = [
- ":syscall",
- requirement("attrs", False),
- requirement("atomicwrites", False),
- requirement("more-itertools", False),
- requirement("pathlib2", False),
- requirement("pluggy", False),
- requirement("py", False),
- requirement("pytest", True),
- requirement("six", False),
- ],
-)
-
-pkg_tar(
- name = "tar",
- srcs = [
- "Dockerfile",
- "syscall.c",
- ],
-)