Hello,
Yes, thank you for advice.
2015-06-19 17:34 GMT+06:00 Remi Galan Alfonso
[off-list ref]:
Alexander Kuleshov [off-list ref] writes:
quoted
+test_expect_success "format-patch format.outputDirectory option" '
+ git config format.outputDirectory "patches/" &&
+ git format-patch master..side &&
+ cnt=$(ls | wc -l) &&
+ echo $cnt &&
+ test $cnt = 3 &&
+ git config --unset format.outputDirectory
+'
You should probably do:
quoted
+ test_config format.outputDirectory "patches/" &&
instead of:
quoted
+ git config format.outputDirectory "patches/" &&
[...]
+ git config --unset format.outputDirectory
This way there shouldn't be any problem with the
tests following yours if your test fails in the middle.
Rémi