VirtualBox

Changeset 86935 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
Nov 20, 2020 3:05:08 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
141439
Message:

testmanager/status.py: Fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/cgi/status.py

    r86934 r86935  
    102102def testbox_data_processing(oDb):
    103103    testboxes_dict = {}
    104     for line in oDb.fetchOne():
     104    while True:
     105        line = oDb.fetchOne();
     106        if line is None:
     107            break;
    105108        testbox_name = line[0]
    106109        test_result = line[1]
     
    398401        # Process the data
    399402        dResult = {};
    400         for aoRow in oDb.fetchOne():
     403        while True:
     404            aoRow = oDb.fetchOne();
     405            if aoRow is None:
     406                break;
    401407            os_results_separating(dResult, aoRow[1], aoRow[2], aoRow[0])  # save all test results
    402408
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette