diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-10-01 15:01:39 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | 88effd4a0d63e37a2851712f63a9709a1e322946 (patch) | |
tree | 8a6334a870f56afb5bf76c32d0bd202de694995c /src | |
parent | 69c7ec31219d666bba4f053fcce07d4df58b8ba2 (diff) |
Fix sibs not finding test code in subdirs of test dir
Fix platform specific configs, not all configs were checked
Diffstat (limited to 'src')
-rw-r--r-- | src/Conf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp index c93f830..090e1e1 100644 --- a/src/Conf.cpp +++ b/src/Conf.cpp @@ -461,7 +461,7 @@ namespace sibs // Do not free file content (fileContentResult) on purpose, since we are using the data and sibs is short lived Result<bool> parseResult = Parser::parse(code, config); if(!parseResult) - return Result<bool>::Err("Failed to read config for: " + parseResult.getErrMsg()); + return Result<bool>::Err("Failed to read config, reason: " + parseResult.getErrMsg()); if(!config.isTest()) { |