GenericTester.generic_type_expr_tester():

    Don't overwhelm the expression mechanism.  Previously, there was no delay
    between successive invocations of 'expression' command.  The test suite
    run has experienced 'Resume timed out' or similar error messages.  Now we
    currently add a sleep of 1.0 second before issuing the next 'expression'
    command.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@120626 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/types/AbstractBase.py b/test/types/AbstractBase.py
index 8f7e4bd..7c06a44 100644
--- a/test/types/AbstractBase.py
+++ b/test/types/AbstractBase.py
@@ -113,6 +113,8 @@
         # Now iterate through the golden list, comparing against the output from
         # 'expr var'.
         for var, val in gl:
+            # Don't overwhelm the expression mechanism.
+            time.sleep(1.0)
             self.runCmd("expression %s" % var)
             output = self.res.GetOutput()