aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2020-01-07 17:05:24 +0000
committerRob Hughes <robert.hughes@arm.com>2020-01-21 16:01:58 +0000
commitbdee4267583a7daaf9ea5284d2ff6d4bbb782229 (patch)
treef61b4fd91777509fc8d55a23fd25af5e8f15ceb8 /src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
parent25b7436b02514145a0289daff78f5b9f64cdd0db (diff)
downloadarmnn-bdee4267583a7daaf9ea5284d2ff6d4bbb782229.tar.gz
Add thin abstraction layer for processes and filesystem
This is used instead of some hardcoded Unix calls and means this code now works on Windows (This is a rework of a previous patch which used boost, now that I have been informed that we are trying to move towards removing boost). Change-Id: Ib0d11055279bbd7b710f086e9890369e3ecbfe9a Signed-off-by: Robert Hughes <robert.hughes@arm.com>
Diffstat (limited to 'src/profiling/test/FileOnlyProfilingDecoratorTests.cpp')
-rw-r--r--src/profiling/test/FileOnlyProfilingDecoratorTests.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp b/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
index 26634704ae..4112dbac03 100644
--- a/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
+++ b/src/profiling/test/FileOnlyProfilingDecoratorTests.cpp
@@ -7,6 +7,7 @@
#include <ProfilingService.hpp>
#include <Runtime.hpp>
+#include <Filesystem.hpp>
#include <boost/core/ignore_unused.hpp>
#include <boost/filesystem.hpp>
@@ -94,12 +95,10 @@ BOOST_AUTO_TEST_CASE(DumpOutgoingValidFileEndToEnd)
profilingService.ResetExternalProfilingOptions(options, true);
// The output file size should be greater than 0.
- struct stat statusBuffer;
- BOOST_CHECK(stat(tempPath.c_str(), &statusBuffer) == 0);
- BOOST_CHECK(statusBuffer.st_size > 0);
+ BOOST_CHECK(armnnUtils::Filesystem::GetFileSize(tempPath.string().c_str()) > 0);
// Delete the tmp file.
- BOOST_CHECK(remove(tempPath.c_str()) == 0);
+ BOOST_CHECK(armnnUtils::Filesystem::Remove(tempPath.string().c_str()));
}
BOOST_AUTO_TEST_SUITE_END()