Home | History | Annotate | Download | only in testrunner

Lines Matching defs:STATUS

48  * <p>Otherwise, expect a series of test results, each one containing a set of status key/value
49 * pairs, delimited by a start(1)/pass(0)/fail(-2)/error(-1) status code result. At end of test
69 /** Relevant test status keys. */
79 /** The set of expected status keys. Used to filter which keys should be stored as metrics */
88 // unused, but regularly occurring status keys.
94 /** Test result status codes. */
105 private static final String STATUS = "INSTRUMENTATION_STATUS: ";
151 /** Stores the status values for the test result currently being parsed */
154 /** Stores the status values for the test result last parsed */
157 /** Stores the current "key" portion of the status key-value being parsed. */
160 /** Stores the current "value" portion of the status key-value being parsed. */
254 * The start of a new status line (starts with Prefixes.STATUS or Prefixes.STATUS_CODE),
259 * A continuation of the previous status (the "value" portion of the key has wrapped
270 // Previous status key-value has been collected. Store it.
274 } else if (line.startsWith(Prefixes.STATUS)) {
275 // Previous status key-value has been collected. Store it.
278 parseKey(line, Prefixes.STATUS.length());
280 // Previous status key-value has been collected. Store it.
286 // Previous status key-value has been collected. Store it.
398 * Parses out a status code result.
407 Log.w(LOG_TAG, "Expected integer status code, received: " + value);
437 * @param statusMap key-value status pairs of test result
441 Log.w(LOG_TAG, "invalid instrumentation status bundle " + testInfo.toString());
482 Log.e(LOG_TAG, "Unknown status code received: " + testInfo.mCode);
496 * @param testInfo current test status values