File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -87,11 +87,13 @@ foreach name {f f2} {
8787
8888
8989 set test "completing $name a\\\$b/ should return h"
90- set cmd "$name a\\\$b/"
91- assert_complete_dir h $cmd "$::srcdir/fixtures/_filedir" $test
92-
93-
94- sync_after_int
90+ if {[info exists ::env(CI)] && [info exists ::env(DIST)] && $::env(DIST) == "centos6"} {
91+ xfail $test
92+ } else {
93+ set cmd "$name a\\\$b/"
94+ assert_complete_dir h $cmd "$::srcdir/fixtures/_filedir" $test
95+ sync_after_int
96+ }
9597
9698
9799 if {! [is_cygwin]} { # Illegal characters in file/dir names
@@ -190,11 +192,13 @@ foreach name {f f2} {
190192 }
191193
192194
193- set cmd "$name \"a\\\$b/"; #"
194- assert_complete_dir {h"} $cmd "$::srcdir/fixtures/_filedir"; #"
195-
196-
197- sync_after_int
195+ if {[info exists ::env(CI)] && [info exists ::env(DIST)] && $::env(DIST) == "centos6"} {
196+ xfail "$name \"a\\\$b/ should show completions"
197+ } else {
198+ set cmd "$name \"a\\\$b/"; #"
199+ assert_complete_dir {h"} $cmd "$::srcdir/fixtures/_filedir"; #"
200+ sync_after_int
201+ }
198202
199203
200204 set cmd "$name \"a\\b/"; #"
You can’t perform that action at this time.
0 commit comments