projects
/
babeltrace.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0824c91
)
tests/utils/utils.sh: bt_diff(): use `local -r` when possible
author
Philippe Proulx
<eeppeliteloop@gmail.com>
Fri, 10 Nov 2023 04:13:33 +0000
(23:13 -0500)
committer
Philippe Proulx
<eeppeliteloop@gmail.com>
Wed, 7 Feb 2024 21:25:56 +0000
(16:25 -0500)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: I7dbf856fdb7024c4586dc8cdd3e9a6a66d139b10
tests/utils/utils.sh
patch
|
blob
|
blame
|
history
diff --git
a/tests/utils/utils.sh
b/tests/utils/utils.sh
index b568590affd9f69a9ed615a42aba525d79025a9c..937496457b70ade86e19b63f67ecf22123016e65 100644
(file)
--- a/
tests/utils/utils.sh
+++ b/
tests/utils/utils.sh
@@
-247,8
+247,8
@@
bt_cli() {
#
# Returns 0 if there's no difference, or not zero otherwise.
bt_diff() {
- local expected_file="$1"
- local actual_file="$2"
+ local
-r
expected_file="$1"
+ local
-r
actual_file="$2"
local ret=0
diff -u <(bt_remove_cr_inline "$expected_file") <(bt_remove_cr_inline "$actual_file") 1>&2
This page took
0.026964 seconds
and
4
git commands to generate.