diff options
author | Tao Bao <tbao@google.com> | 2018-07-17 23:09:03 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-07-17 23:09:03 +0200 |
commit | 29932e7bcc2865494e4cf03248381475687d227b (patch) | |
tree | fa668d92873b1f1d1df22bb992610ea53a69ed49 /tests | |
parent | Merge "applypatch: Consolidate CacheSizeCheck() and MakeFreeSpaceOnCache()." (diff) | |
parent | Fix the arguments passed to getopt_long(3). (diff) | |
download | android_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.cpp | 10 |
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]); +} |