提交 dd23bec9 作者: Łukasz Magiera

profile: fix test profile tests

License: MIT
Signed-off-by: 's avatarŁukasz Magiera <magik6k@gmail.com>
上级 5a632f70
...@@ -162,14 +162,21 @@ fetching may be degraded. ...@@ -162,14 +162,21 @@ fetching may be degraded.
} }
func appendSingle(a []string, b []string) []string { func appendSingle(a []string, b []string) []string {
m := map[string]struct{}{} out := make([]string, 0, len(a)+len(b))
m := map[string]bool{}
for _, f := range a { for _, f := range a {
m[f] = struct{}{} if !m[f] {
out = append(out, f)
}
m[f] = true
} }
for _, f := range b { for _, f := range b {
m[f] = struct{}{} if !m[f] {
out = append(out, f)
} }
return mapKeys(m) m[f] = true
}
return out
} }
func deleteEntries(arr []string, del []string) []string { func deleteEntries(arr []string, del []string) []string {
......
...@@ -212,8 +212,13 @@ test_config_cmd() { ...@@ -212,8 +212,13 @@ test_config_cmd() {
test_profile_apply_revert server local-discovery test_profile_apply_revert server local-discovery
# won't work as we already have this profile applied # tests above mess with values this profile changes, need to do that before testing test profile
# test_profile_apply_revert test test_expect_success "ensure test profile is applied fully" '
ipfs config profile apply test
'
# need to do this in reverse as the test profile is already applied in sharness
test_profile_apply_revert default-networking test
# won't work as it changes datastore definition, which makes ipfs not launch # won't work as it changes datastore definition, which makes ipfs not launch
# without converting first # without converting first
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论