aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Sesek <rsesek@google.com>2016-12-15 19:01:19 +0000
committerRobert Sesek <rsesek@google.com>2016-12-15 19:01:19 +0000
commit60aa1eedc716d2c51273a6f6b581500879292870 (patch)
treebcff7bd37773ce46cd4195aae450cc9ebf4fc80c
parent659656f2fdc0eca2e82e2d92acc8bfaa291d3945 (diff)
downloadplatform_external_seccomp-tests-60aa1eedc716d2c51273a6f6b581500879292870.tar.gz
platform_external_seccomp-tests-60aa1eedc716d2c51273a6f6b581500879292870.tar.bz2
platform_external_seccomp-tests-60aa1eedc716d2c51273a6f6b581500879292870.zip
Revert "Create Android.mk file and a wrapper header for use by CTS."
This reverts commit 659656f2fdc0eca2e82e2d92acc8bfaa291d3945. Reason for revert: broke aosp_mips-eng Change-Id: I5f9cca1f6f3aff3db0ae006c1e3905d99e709274
-rw-r--r--Android.mk32
-rw-r--r--seccomp_bpf_tests.h28
2 files changed, 0 insertions, 60 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index a7402d7..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright (C) 2016 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-LOCAL_PATH := $(call my-dir)
-
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := external_seccomp_tests
-
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := linux/seccomp_bpf.c
-
-# TODO(rsesek): Remove after syncing in upstream..
-LOCAL_CFLAGS := -D__ARCH_WANT_SYSCALL_DEPRECATED
-
-LOCAL_SHARED_LIBRARIES := liblog
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-
-include $(BUILD_STATIC_LIBRARY)
diff --git a/seccomp_bpf_tests.h b/seccomp_bpf_tests.h
deleted file mode 100644
index a46be51..0000000
--- a/seccomp_bpf_tests.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (C) 2016 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-/**
- * This header provides access to the Seccomp-BPF kernel test suite,
- * for use by CTS.
- */
-
-#include "linux/test_harness.h"
-
-// Forward declare from seccomp_bpf_tests.c.
-extern "C" {
-struct __test_metadata* get_seccomp_test_list();
-}