Skip to content

Commit

Permalink
Fixup typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Farigh committed May 8, 2020
1 parent 15081cf commit 44189b8
Show file tree
Hide file tree
Showing 26 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions bin/awk/format_memcheck_report.awk
Original file line number Diff line number Diff line change
Expand Up @@ -207,17 +207,17 @@
## Valgrind's suppression entry
#############

# Vagrind suppression opening
# Valgrind suppression opening
output=gensub(/^{$/, valgrind_suppression_opening "{", 1, output)

# Vagrind suppression closing (add two ==== lines to seperate the suppression from the next violation)
# Valgrind suppression closing (add two ==== lines to seperate the suppression from the next violation)
output=gensub(/^}$/, "}</div>====<br />====", 1, output)

#############
## Additionnal infos
#############

# Vagrind hint message for some errors
# Valgrind hint message for some errors
output=gensub(/^(==[0-9]*== )(This is usually caused by using VALGRIND_MALLOCLIKE_BLOCK in an inappropriate way.)/,
"\\1<span class=\"valgrind_hint\">\\2</span>", 1, output)

Expand Down
2 changes: 1 addition & 1 deletion bin/html_res/html_report.header
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->%{html_part_imports}
<!-- Valgrind reports asynchronous loading parts -->%{html_part_imports}
</head>
<body>
<div class="report_container">
Expand Down
4 changes: 2 additions & 2 deletions bin/html_res/memcheck-cover.css
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ body {
padding-right: 10px;
}

/* Vagrind warnings */
/* Valgrind warnings */
.valgrind_warning, .valgrind_warning_context {
color: #F08411; /* Orange */
font-weight: bold;
Expand All @@ -457,7 +457,7 @@ body {
font-weight: bold;
}

/* Vagrind hint message for some errors */
/* Valgrind hint message for some errors */
.valgrind_hint {
color: #F08411; /* Orange */
font-weight: bold;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="definitely_lost.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="fishy_argument_value.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="illegal_memory_pool_addr.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="indirectly_lost.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="invalid_delete.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="invalid_read.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="invalid_write.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="jump_to_invalid_addr.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="true.memcheck.html.part" async="async"></script>
<script src="test/bin/definitely_lost.memcheck.html.part" async="async"></script>
<script src="test/bin/fishy_argument_value.memcheck.html.part" async="async"></script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="mismatched_delete.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="true.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="overlapping_blocks.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="overlapping_src_dest.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="possibly_lost.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="still_reachable.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="syscall_param_contains_uninitialized_bytes.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="syscall_param_points_to_uninitialized_bytes.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="unaddressable_bytes.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="uninitialized_value.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="valgrind_client_checks.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="valgrind_warnings.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="m_addrinfo_contexts.memcheck.html.part" async="async"></script>
<script src="m_signals_contexts.memcheck.html.part" async="async"></script>
<script src="mc_error_contexts.memcheck.html.part" async="async"></script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="memcheck-cover.css">
<script type="text/javascript" src="memcheck-cover.js"></script>

<!-- Vagrind reports asynchronous loading parts -->
<!-- Valgrind reports asynchronous loading parts -->
<script src="uninitialized_value.memcheck.html.part" async="async"></script>
</head>
<body>
Expand Down

0 comments on commit 44189b8

Please sign in to comment.