These were not included in that check. Beats me as to why. Change-Id: Ib44c7f0b10672359026f95daeb088039cf6df4eb
22 lines
437 B
C++
22 lines
437 B
C++
#pragma once
|
|
/// @file
|
|
|
|
#include "lix/libutil/types.hh"
|
|
#include "lix/libutil/environment-variables.hh"
|
|
#include "lix/libutil/file-system.hh"
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* The path to the unit test data directory. See the contributing guide
|
|
* in the manual for further details.
|
|
*/
|
|
Path getUnitTestData();
|
|
|
|
/**
|
|
* Resolve a path under the unit test data directory to an absolute path.
|
|
*/
|
|
Path getUnitTestDataPath(std::string_view path);
|
|
|
|
}
|