aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Sesek <rsesek@google.com>2016-12-15 19:32:48 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-12-15 19:32:48 +0000
commit8a50a6e8e282036c67346353f18e20b09a2b077c (patch)
treebcff7bd37773ce46cd4195aae450cc9ebf4fc80c
parenta268d415c93e87948d737cb55fd69f3ad0cdcd01 (diff)
parenta84cfad9577fbe01a7a32b98071f59db6b3301e1 (diff)
downloadseccomp-tests-8a50a6e8e282036c67346353f18e20b09a2b077c.tar.gz
Revert "Create Android.mk file and a wrapper header for use by CTS." am: 60aa1eedc7 am: 5105cf38ea am: e89c8f702b
am: a84cfad957 Change-Id: I92aeb1cd6a57ec8911274fa76035ee3b03e71edc
-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();
-}