summaryrefslogtreecommitdiff
path: root/test/testHelpers.cpp
blob: c769d326c3f1b7b9ea2e43eee35edac6ee5b733c (plain)
1
2
3
4
5
6
7
8
#include "testHelpers.h"

const std::filesystem::path ANALYSIS_DIRECTORY = []() {
	auto xdgRuntimeDir = getenv("XDG_RUNTIME_DIR");
	auto out = std::filesystem::path {xdgRuntimeDir ? xdgRuntimeDir : "/tmp"} / "ilt-output";
	std::filesystem::create_directories(out);
	return out;
}();