summaryrefslogtreecommitdiff
path: root/render-test
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-12-10 18:13:13 +0200
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-12-10 19:04:45 +0200
commite31ad307f4362d10a9e9b27852be855a81d4094a (patch)
treec994bbe9bab8c8d2c4b00e0c8112ff1ab902000e /render-test
parent5559a9aad10888a48a1be1d7212bbbbb2893dd29 (diff)
downloadqtlocation-mapboxgl-e31ad307f4362d10a9e9b27852be855a81d4094a.tar.gz
[test runner] Report absolute path to the results html file
Diffstat (limited to 'render-test')
-rw-r--r--render-test/render_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/render-test/render_test.cpp b/render-test/render_test.cpp
index 1982964311..98897bb912 100644
--- a/render-test/render_test.cpp
+++ b/render-test/render_test.cpp
@@ -245,7 +245,7 @@ int runRenderTests(int argc, char** argv, std::function<void()> testStatus) {
printf(ANSI_COLOR_RED "%u errored (%.1lf%%)" ANSI_COLOR_RESET "\n", stats.erroredTests, 100.0 * stats.erroredTests / count);
}
- printf("Results at: %s\n", resultPath.c_str());
+ printf("Results at: %s\n", mbgl::filesystem::canonical(resultPath).c_str());
return stats.failedTests + stats.erroredTests == 0 ? 0 : 1;
}