summaryrefslogtreecommitdiff
path: root/tests/storage/Android.mk
diff options
context:
space:
mode:
authorKen Sumrall <ksumrall@android.com>2013-02-05 14:45:10 -0800
committerKen Sumrall <ksumrall@android.com>2013-02-08 14:13:24 -0800
commitdd03e47358368bbba26eed8d727d4703a1c8807a (patch)
treeea7ef5f25cfd0fc96d67a49d41a4b3620c5351e3 /tests/storage/Android.mk
parentbac6c6a7127cd6747db1c771344ce9d88984f3b7 (diff)
downloadextras-dd03e47358368bbba26eed8d727d4703a1c8807a.tar.gz
A new tool to test how many files can be opened simultaneously.
This tool will try to simultaneously open the specified number of files in the specified directory. It is useful to check if hard limits are high enough, and also check if a filesystem performs well when many files are open at the same time. The sdcard daemon has some issues in this area, both in max files that can be open at once, and performance issues when too many are open. Change-Id: I05a1ca49208f54a27d5405e4850752f49cdca443
Diffstat (limited to 'tests/storage/Android.mk')
-rw-r--r--tests/storage/Android.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/storage/Android.mk b/tests/storage/Android.mk
new file mode 100644
index 00000000..48f0029f
--- /dev/null
+++ b/tests/storage/Android.mk
@@ -0,0 +1,11 @@
+# Copyright 2013 The Android Open Source Project
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+include $(CLEAR_VARS)
+LOCAL_SRC_FILES := opentest.c
+LOCAL_MODULE := opentest
+LOCAL_MODULE_TAGS := optional
+include $(BUILD_EXECUTABLE)
+