summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-07-18 00:05:29 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-07-18 00:05:29 +0200
commitaf80f51151a7ec9402e4818219a74bf9ddfc9076 (patch)
tree5bf35c6deefe6bcaeca33b371719f570a0b1147d /tests
parentMerge "applypatch: Consolidate CacheSizeCheck() and MakeFreeSpaceOnCache()." am: 624b6b6cd5 (diff)
parentMerge "Fix the arguments passed to getopt_long(3)." (diff)
downloadandroid_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.tar
android_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.tar.gz
android_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.tar.bz2
android_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.tar.lz
android_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.tar.xz
android_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.tar.zst
android_bootable_recovery-af80f51151a7ec9402e4818219a74bf9ddfc9076.zip
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/sysutil_test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unit/sysutil_test.cpp b/tests/unit/sysutil_test.cpp
index 19fa4c59e..de8ff7065 100644
--- a/tests/unit/sysutil_test.cpp
+++ b/tests/unit/sysutil_test.cpp
@@ -127,3 +127,13 @@ TEST(SysUtilTest, MapFileBlockMapInvalidBlockMap) {
ASSERT_TRUE(android::base::WriteStringToFile("/doesntexist\n4096 4096\n1\n0 1\n", temp_file.path));
ASSERT_FALSE(mapping.MapFile(filename));
}
+
+TEST(SysUtilTest, StringVectorToNullTerminatedArray) {
+ std::vector<std::string> args{ "foo", "bar", "baz" };
+ auto args_with_nullptr = StringVectorToNullTerminatedArray(args);
+ ASSERT_EQ(4, args_with_nullptr.size());
+ ASSERT_STREQ("foo", args_with_nullptr[0]);
+ ASSERT_STREQ("bar", args_with_nullptr[1]);
+ ASSERT_STREQ("baz", args_with_nullptr[2]);
+ ASSERT_EQ(nullptr, args_with_nullptr[3]);
+}