-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'perf/probes' into perf/core
Merge reason: add these fixes to 'perf probe'. Signed-off-by: Ingo Molnar <mingo@elte.hu>
- Loading branch information
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# GNU objdump version checker | ||
# | ||
# Usage: | ||
# objdump -v | awk -f chkobjdump.awk | ||
BEGIN { | ||
# objdump version 2.19 or later is OK for the test. | ||
od_ver = 2; | ||
od_sver = 19; | ||
} | ||
|
||
/^GNU/ { | ||
split($4, ver, "."); | ||
if (ver[1] > od_ver || | ||
(ver[1] == od_ver && ver[2] >= od_sver)) { | ||
exit 1; | ||
} else { | ||
printf("Warning: objdump version %s is older than %d.%d\n", | ||
$4, od_ver, od_sver); | ||
print("Warning: Skipping posttest."); | ||
# Logic is inverted, because we just skip test without error. | ||
exit 0; | ||
} | ||
} |