From c924442a5cc6ea809e639022ddaecc6b6d146c62 Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Mon, 2 Oct 2023 09:36:22 +0200 Subject: [PATCH] Renaming in order to test PR handling --- cpp/test/gpiobus_raspberry_test.cpp | 2 +- cpp/test/test_shared.cpp | 2 +- cpp/test/test_shared.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/test/gpiobus_raspberry_test.cpp b/cpp/test/gpiobus_raspberry_test.cpp index 7c8d1d74ea..6b5970130d 100644 --- a/cpp/test/gpiobus_raspberry_test.cpp +++ b/cpp/test/gpiobus_raspberry_test.cpp @@ -65,7 +65,7 @@ TEST(GpiobusRaspberry, GetDtRanges) EXPECT_EQ(0x20000000, GPIOBUS_Raspberry::bcm_host_get_peripheral_address()); DeleteTempFile("/proc/device-tree/soc/ranges"); - CleanupAllTempFiles(); + CleanUpAllTempFiles(); } TEST(GpiobusRaspberry, GetDat) diff --git a/cpp/test/test_shared.cpp b/cpp/test/test_shared.cpp index fe77be2896..0e91346038 100644 --- a/cpp/test/test_shared.cpp +++ b/cpp/test/test_shared.cpp @@ -128,7 +128,7 @@ void DeleteTempFile(const string& filename) remove(temp_file); } -void CleanupAllTempFiles() +void CleanUpAllTempFiles() { remove_all(test_data_temp_path); } diff --git a/cpp/test/test_shared.h b/cpp/test/test_shared.h index 954da1a4fa..97d596068a 100644 --- a/cpp/test/test_shared.h +++ b/cpp/test/test_shared.h @@ -36,7 +36,7 @@ void CreateTempFileWithData(const string&, vector&); void DeleteTempFile(const string&); // Call this at the end of every test case to make sure things are cleaned up -void CleanupAllTempFiles(); +void CleanUpAllTempFiles(); string ReadTempFileToString(const string& filename);