diff options
Diffstat (limited to 'tests/libgen_test.cpp')
-rw-r--r-- | tests/libgen_test.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/libgen_test.cpp b/tests/libgen_test.cpp index cae646f25..d0402dbf6 100644 --- a/tests/libgen_test.cpp +++ b/tests/libgen_test.cpp @@ -14,11 +14,10 @@ * limitations under the License. */ -#include <gtest/gtest.h> - #include <libgen.h> #include <errno.h> +#include <gtest/gtest.h> static void TestBasename(const char* in, const char* expected_out) { char* writable_in = (in != NULL) ? strdup(in) : NULL; @@ -40,7 +39,7 @@ static void TestDirname(const char* in, const char* expected_out) { // Do not use basename as the test name, it's defined to another value in glibc // so leads to a differently named test on host versus target architectures. -TEST(libgen, basename_smoke) { +TEST(libgen, posix_basename) { TestBasename(NULL, "."); TestBasename("", "."); TestBasename("/usr/lib", "lib"); |