Signed-off-by: Ben Elliston <bje@gnu.org>
+2017-08-18 Tom Tromey <tom@tromey.com>
+
+ * runtest.exp: Fix --directory matching.
+
2017-08-15 Ben Elliston <bje@gnu.org>
* lib/framework.exp (xml_tag): New proc.
# list of directories. Look for match on each item.
set found 0
foreach directory $cmdline_dir_to_run {
- if {[string match $directory $dir]} {
+ # Look for a directory that ends with the
+ # provided --directory name.
+ if {[string match "$directory" $dir]
+ || [string match "*/$directory" $dir]} {
set found 1
break
}