diff options
author | Craig Tiller <ctiller@google.com> | 2016-03-26 15:41:52 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-03-26 15:41:52 -0700 |
commit | cb16a24fe5a6e5f511359a1bc14b20e9fa0cab48 (patch) | |
tree | 33b4e058576b8280e3ba07912ab31fc780f0a7f0 /tools | |
parent | b84b55307509c39f36e16ed041a24cf21ad2eb41 (diff) |
Fix tool
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/sanity/check_sources_and_headers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/sanity/check_sources_and_headers.py b/tools/run_tests/sanity/check_sources_and_headers.py index 44dc49bb06..b5f7912796 100755 --- a/tools/run_tests/sanity/check_sources_and_headers.py +++ b/tools/run_tests/sanity/check_sources_and_headers.py @@ -55,7 +55,7 @@ def target_has_header(target, name): for dep in target['deps']: if target_has_header(get_target(dep), name): return True - if name == 'src/core/profiling/stap_probes.h': + if name == 'src/core/lib/profiling/stap_probes.h': return True return False |