summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-06-06 16:40:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-06-06 16:40:22 +0000
commit160671d4095dfe30147701526568e35171e99559 (patch)
treec1f4dad97728468ca7e4cba9dbabcd5b47957d29
parentd98c857902524791f7a050b5a4fc7cd9d969476f (diff)
parent6faf9785c103248dc50bce08c8c9ecc16a7a7c2c (diff)
downloadextras-160671d4095dfe30147701526568e35171e99559.tar.gz
Merge "kernel.config: add CONFIG_NFS* testing"
-rw-r--r--tests/kernel.config/Android.mk5
-rw-r--r--tests/kernel.config/nfs_test.cpp28
2 files changed, 32 insertions, 1 deletions
diff --git a/tests/kernel.config/Android.mk b/tests/kernel.config/Android.mk
index 7fa92a18..af68c055 100644
--- a/tests/kernel.config/Android.mk
+++ b/tests/kernel.config/Android.mk
@@ -16,10 +16,11 @@ test_c_flags := \
# Required Tests
cts_src_files := \
aslr_test.cpp \
+ logger_test.cpp \
multicast_test.cpp \
+ nfs_test.cpp \
pstore_test.cpp \
sysvipc_test.cpp \
- logger_test.cpp
# Required plus Recommended Tests
test_src_files := \
@@ -33,6 +34,7 @@ LOCAL_MODULE_TAGS := tests
LOCAL_CFLAGS := $(test_c_flags)
LOCAL_CFLAGS := -DHAS_KCMP
LOCAL_SRC_FILES := $(test_src_files)
+LOCAL_SHARED_LIBRARIES := libbase
include $(BUILD_NATIVE_TEST)
include $(CLEAR_VARS)
@@ -45,6 +47,7 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_DATA)/nativetest
LOCAL_MULTILIB := both
LOCAL_MODULE_STEM_32 := $(LOCAL_MODULE)32
LOCAL_MODULE_STEM_64 := $(LOCAL_MODULE)64
+LOCAL_SHARED_LIBRARIES := libbase
LOCAL_STATIC_LIBRARIES := libgtest libgtest_main
LOCAL_COMPATIBILITY_SUITE := cts
diff --git a/tests/kernel.config/nfs_test.cpp b/tests/kernel.config/nfs_test.cpp
new file mode 100644
index 00000000..01b45a74
--- /dev/null
+++ b/tests/kernel.config/nfs_test.cpp
@@ -0,0 +1,28 @@
+/*
+ * 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.
+ */
+
+#include <string>
+
+#include <android-base/file.h>
+#include <gtest/gtest.h>
+
+TEST(kernel_config, NOT_CONFIG_NFS_) {
+ std::string fs;
+ EXPECT_TRUE(android::base::ReadFileToString("/proc/filesystems", &fs));
+ EXPECT_TRUE(fs.find("\tnfs\n") == std::string::npos);
+ EXPECT_TRUE(fs.find("\tnfs4\n") == std::string::npos);
+ EXPECT_TRUE(fs.find("\tnfsd\n") == std::string::npos);
+}