File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
2
2
set -euo pipefail
3
3
4
- pushdq_here
4
+ _TT_pushdq_here
5
5
6
6
run_bash_on " */capture-all.sh" " $@ "
7
7
8
- popdq
8
+ _TT_popdq
Original file line number Diff line number Diff line change 1
1
2
2
set -euo pipefail
3
3
4
- pushdq_here
4
+ _TT_pushdq_here
5
5
6
6
run_bash_on " */test-all.sh" " $@ "
7
7
8
- popdq
8
+ _TT_popdq
Original file line number Diff line number Diff line change @@ -126,16 +126,16 @@ function absolute_path {
126
126
fi
127
127
}
128
128
129
- function pushdq {
129
+ function _TT_pushdq {
130
130
pushd " $@ " > /dev/null
131
131
}
132
132
133
- function popdq {
133
+ function _TT_popdq {
134
134
popd > /dev/null
135
135
}
136
136
137
- function pushdq_here {
138
- pushdq " $( dirname " $0 " ) "
137
+ function _TT_pushdq_here {
138
+ _TT_pushdq " $( dirname " $0 " ) "
139
139
}
140
140
141
141
Original file line number Diff line number Diff line change @@ -42,17 +42,17 @@ function pop_test_context {
42
42
43
43
44
44
function pushd_test_context {
45
- pushdq_here
45
+ _TT_pushdq_here
46
46
push_test_context " $@ "
47
47
}
48
48
49
49
function pushd_test_context_here {
50
- pushdq_here
50
+ _TT_pushdq_here
51
51
push_test_context " $( basename ${PWD} ) "
52
52
}
53
53
54
54
function popd_test_context {
55
- popdq
55
+ _TT_popdq
56
56
pop_test_context " $@ "
57
57
}
58
58
@@ -411,7 +411,7 @@ function __exec__run_command__ {
411
411
local -ra command_array=(" ${abs_command} " )
412
412
fi
413
413
414
- pushdq " ${abs_working_directory} "
414
+ _TT_pushdq " ${abs_working_directory} "
415
415
rm -f " ${exec_abs_variables} "
416
416
touch " ${exec_abs_variables} "
417
417
exec_return_code=0
@@ -440,7 +440,7 @@ function __exec__run_command__ {
440
440
done > " ${exec_abs_variables} "
441
441
exit " ${exec_return_code} "
442
442
) || exec_return_code=$?
443
- popdq
443
+ _TT_popdq
444
444
}
445
445
446
446
function expect_exec {
You can’t perform that action at this time.
0 commit comments