Skip to content

Commit 6a181ef

Browse files
committed
Change Test file names to be more indicative of the test
1 parent db96b76 commit 6a181ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/test/src/sys/mman/linux/remap_file_pages_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ TEST(LlvmLibcRemapFilePagesTest, NoError) {
2727
ASSERT_GT(page_size, size_t(0));
2828

2929
// Create a file-backed mapping
30-
constexpr const char *file_name = "noerror.remap_file_pages";
30+
constexpr const char *file_name = "remap_file_pages.test.noerror";
3131
auto test_file = libc_make_test_file_path(file_name);
3232
int fd = LIBC_NAMESPACE::open(test_file, O_RDWR | O_CREAT, S_IRWXU);
3333
ASSERT_GT(fd, 0);
@@ -57,7 +57,7 @@ TEST(LlvmLibcRemapFilePagesTest, ErrorInvalidFlags) {
5757
ASSERT_GT(page_size, size_t(0));
5858

5959
// Create a file-backed mapping
60-
constexpr const char *file_name = "error.remap";
60+
constexpr const char *file_name = "remap_file_pages.test.error";
6161
auto test_file = libc_make_test_file_path(file_name);
6262
int fd = LIBC_NAMESPACE::open(test_file, O_RDWR | O_CREAT, S_IRWXU);
6363
ASSERT_GT(fd, 0);

0 commit comments

Comments
 (0)