Merge "releasetools: Log to stdout when running tests."

am: 60c3421896

Change-Id: I3d3d3c586833297ec8e030c59ab4dbae546ac5b1
This commit is contained in:
Tao Bao
2018-10-18 21:07:59 -07:00
committed by android-build-merger

View File

@@ -18,13 +18,18 @@
Utils for running unittests.
"""
import logging
import os
import os.path
import struct
import sys
import unittest
import common
# Some test runner doesn't like outputs from stderr.
logging.basicConfig(stream=sys.stdout)
def get_testdata_dir():
"""Returns the testdata dir, in relative to the script dir."""