summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-07-17 23:09:03 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-07-17 23:09:03 +0200
commit29932e7bcc2865494e4cf03248381475687d227b (patch)
treefa668d92873b1f1d1df22bb992610ea53a69ed49 /tests
parentMerge "applypatch: Consolidate CacheSizeCheck() and MakeFreeSpaceOnCache()." (diff)
parentFix the arguments passed to getopt_long(3). (diff)
downloadandroid_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.gz
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.bz2
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.lz
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.xz
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.zst
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.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]);
+}