blob: 7d78cd27ceb03a9b347a7c6477841fb083cf8fed (
plain)
1
2
3
4
5
6
|
#include "testHelpers.h"
const std::filesystem::path ANALYSIS_DIRECTORY = []() {
auto xdgRuntimeDir = getenv("XDG_RUNTIME_DIR");
return std::filesystem::path {xdgRuntimeDir ? xdgRuntimeDir : "/tmp"} / "ilt-output";
}();
|