From fe0c2a73e79cdda818fb59e78f4fcff2d2a102d1 Mon Sep 17 00:00:00 2001 From: James Price Date: Wed, 4 Jan 2023 18:06:49 +0000 Subject: [PATCH] tint: TINT_EMIT_COVERAGE -> DAWN_EMIT_COVERAGE Change-Id: Ic215fba55238d89f9790f071361e29fddfc3624d Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/116340 Commit-Queue: James Price Kokoro: Kokoro Reviewed-by: Ben Clayton --- docs/tint/coverage-info.md | 2 +- tools/tint-generate-coverage | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tint/coverage-info.md b/docs/tint/coverage-info.md index fdb79df47d..bfdaed3233 100644 --- a/docs/tint/coverage-info.md +++ b/docs/tint/coverage-info.md @@ -7,7 +7,7 @@ Requirements: ## Building Tint with coverage generation enabled -Follow the steps [to build Tint with CMake](../README.md), but include the additional `-DTINT_EMIT_COVERAGE=1` CMake flag. +Follow the steps [to build Tint with CMake](../README.md), but include the additional `-DDAWN_EMIT_COVERAGE=1` CMake flag. ## Generate coverage information diff --git a/tools/tint-generate-coverage b/tools/tint-generate-coverage index 5136a1eae2..284e2e9b27 100755 --- a/tools/tint-generate-coverage +++ b/tools/tint-generate-coverage @@ -57,7 +57,7 @@ LLVM_PROFILE_FILE="${PROFRAW_FILE}" "$@" # Check that coverage information was generated if [ ! -f "$PROFRAW_FILE" ]; then echo "lcov.info was not generated. Is coverage generation enabled?" - echo "To enable, run cmake with -DTINT_EMIT_COVERAGE=1". + echo "To enable, run cmake with -DDAWN_EMIT_COVERAGE=1". exit 1 fi