Home
last modified time | relevance | path

Searched refs:tmpTxtFile (Results 1 – 1 of 1) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceFuncTest.java826 File tmpTxtFile = FileUtil.createTempFile("logcat", ".txt"); in testGetLogcat_size() local
829 FileUtil.writeToFile(source.createInputStream(), tmpTxtFile); in testGetLogcat_size() local
830 CLog.i("Created file at %s", tmpTxtFile.getAbsolutePath()); in testGetLogcat_size()
833 "Saved text file is smaller than expected", 100 * 1024 <= tmpTxtFile.length()); in testGetLogcat_size()
835 String s = FileUtil.readStringFromFile(tmpTxtFile); in testGetLogcat_size()
840 FileUtil.deleteFile(tmpTxtFile); in testGetLogcat_size()