00b6bc62ac74afaee5bcc2a63a428721ab080afc
chmalee
  Wed Oct 31 17:06:24 2018 -0700
Making some minor changes to qa scripts, refs #20980 #22364

diff --git src/utils/qa/qaGbTracks src/utils/qa/qaGbTracks
index 83869c1..537ce5c 100755
--- src/utils/qa/qaGbTracks
+++ src/utils/qa/qaGbTracks
@@ -30,30 +30,39 @@
 
   creates 2 files:  outFile.summary, outFile.log
         """)
     parser.add_argument('db', help='the database to check')
     parser.add_argument('-f', dest='tableFile', nargs=1, type=argparse.FileType('r'),
                         help='a file listing tables to check (separated by spaces or newlines)')
     parser.add_argument('table', help ='the name of a table to check', nargs='*')
     parser.add_argument('outFile', help='base name to give results files')
     args = parser.parse_args()
     if args.tableFile:
         # add any additional tables in the table file to the table list
         args.table.extend((args.tableFile[0].read()).split())
         args.tableFile[0].close()
     return args
 
+def cleanTableList(tableList):
+    """Strips 'db.' from tables in tableList."""
+    ret = []
+    for tbl in tableList:
+        if "." in tbl:
+            ix = tbl.index(".")
+            ret.append(tbl[ix+1:])
+    return ret
+
 def checkTablesReceived(tableList, outFile):
     """Raises an exception if the tableList is empty. (Necessary because both ways of specifying
     tables are optional.)"""
     if not tableList:
         raise Exception("Received outFile name '" + outFile + "', but no tables were specified.")
 
 def tableExists(db, table):
     """True if the table exists in the given database."""
     sqlResult = qaUtils.callHgsql(db, "show tables like '" + table + "'")
     return sqlResult.strip() == table
 
 def checkTablesExist(db, tableList):
     """Raises an exception if any table in the tables list does not exist in the database."""
     for name in tableList:
         if not tableExists(db, name):
@@ -68,31 +77,31 @@
         reporter.writeLine(delimiterLine)
         reporter.writeLine(db + "." + table +":\n")
         table = factory.tableQaFactory(db, table, reporter, sumTable)
         table.validate()
         reporter.writeBlankLine()
         table.statistics()
     reporter.writeLine("Tests complete:")
     reporter.writeTimestamp()
 
 def writeSummaryFile(sumTable, sumFile):
     sumFile.write(sumTable.tabSeparated())
 
 def main():
     """Main function of qaGbTracks. Runs all of the other functions of the program."""
     args = parseCommandLine()
-    tableList = args.table
+    tableList = cleanTableList(args.table)
     db = args.db
     outFile = args.outFile
     checkTablesReceived(tableList, outFile)
     checkTablesExist(db, tableList)
 
     logFile = open(outFile + ".log", "w")
     sumFile = open(outFile + ".summary", "w")
     myReporter = reporter.Reporter(logFile)
     sumTable = summary.SumTable()
 
     runTests(db, tableList, myReporter, sumTable)
     writeSummaryFile(sumTable, sumFile)
 
     logFile.close()
     sumFile.close()