From 49c52a1e3be742cd7785ccc36c31cbbe495c4003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89anna=20=C3=93=20Cath=C3=A1in?= Date: Mon, 27 Apr 2020 12:54:11 +0100 Subject: IVGCVSW-4728 Attempt to fix test failures MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I0e0d4a8338c7df4f09518d9f84605b3cc002f2b0 Signed-off-by: Éanna Ó Catháin --- src/timelineDecoder/JSONTimelineDecoder.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/timelineDecoder/JSONTimelineDecoder.hpp') diff --git a/src/timelineDecoder/JSONTimelineDecoder.hpp b/src/timelineDecoder/JSONTimelineDecoder.hpp index 17ee84b679..c4e085587e 100644 --- a/src/timelineDecoder/JSONTimelineDecoder.hpp +++ b/src/timelineDecoder/JSONTimelineDecoder.hpp @@ -9,6 +9,8 @@ #include #include +#include +#include namespace armnn { @@ -63,7 +65,10 @@ public: private: Model m_Model; - std::string outputJSONFile = "/tmp/output.json"; + boost::filesystem::path fileDir = boost::filesystem::temp_directory_path(); + boost::filesystem::path p{fileDir / boost::filesystem::unique_path("output.json")}; + + std::string outputJSONFile = p.string(); void HandleRetentionLink(const Relationship& relationship); void HandleLabelLink(const Relationship& relationship); -- cgit v1.2.1