[gdb/testsuite] Remove debug prints in gdb_find_gdc
authorTom de Vries <tdevries@suse.de>
Sat, 22 Apr 2023 09:04:11 +0000 (11:04 +0200)
committerTom de Vries <tdevries@suse.de>
Sat, 22 Apr 2023 09:04:11 +0000 (11:04 +0200)
When running the gdb.dlang test-cases, and forcing gdb_find_gdc to be used
rather than dejagnu's copy (mimicing what happens with an older dejagnu
without find_gdc), I run into these debug prints:
...
Tool Root: /data/vries/gdb/leap-15-4/build
CC: gdc
...

Remove these.

Tested on x86_64-linux.

gdb/testsuite/lib/future.exp

index fa839fcd12b88eff55a19b70c8e4a38ed6024de7..807053b8f94caaa4f8d760f170baae741ca5ba3b 100644 (file)
@@ -43,7 +43,6 @@ proc gdb_find_gnatmake {} {
 
 proc gdb_find_gdc {} {
     global tool_root_dir
-    print "Tool Root: $tool_root_dir"
 
     if {![is_remote host]} {
        set file [lookfor_file $tool_root_dir gdc]
@@ -58,7 +57,7 @@ proc gdb_find_gdc {} {
     } else {
        set CC [transform gdc]
     }
-    print "CC: $CC"
+
     return $CC
 }