Searched refs:logs (Results 1 - 25 of 85) sorted by relevance

1234

/external/libmojo/base/android/junit/src/org/chromium/base/
H A DLogTest.java28 List<ShadowLog.LogItem> logs = ShadowLog.getLogs();
29 assertEquals("Only one log should be written", 1, logs.size());
31 assertTrue("The origin of the log message (" + logs.get(0).msg + ") looks wrong.",
32 logs.get(0).msg.matches("\\[LogTest.java:\\d+\\].*"));
60 List<ShadowLog.LogItem> logs = ShadowLog.getLogs();
64 assertEquals(t, logs.get(logs.size() - 1).throwable);
65 assertEquals("Bar", logs.get(logs.size() - 1).msg);
69 assertEquals(t, logs
[all...]
/external/linux-kselftest/tools/testing/selftests/ftrace/
H A DMakefile5 EXTRA_CLEAN := $(OUTPUT)/logs/*
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DTestLogHandler.java28 private final List<String> logs = new ArrayList<>(); field in class:TestLogHandler
31 logs.add(logRecord.getLevel() + ": " + logRecord.getMessage());
42 while (logs.isEmpty()) {
45 return logs.remove(0);
/external/linux-kselftest/tools/testing/selftests/pstore/
H A DMakefile8 EXTRA_CLEAN := logs/* *uuid
/external/skia/infra/bots/recipe_modules/isolate/tests/
H A Disolated_tests.py14 api.step.active_result.presentation.logs['details'] = [
/external/parameter-framework/upstream/test/functional-tests/include/
H A DStoreLogger.hpp67 logs.push_back({Log::Level::warning, strLog});
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); }
71 const Logs &getLogs() const { return logs; }
89 std::copy_if(logs.begin(), logs.end(), std::back_inserter(filtered), predicate);
93 Logs logs; variable
/external/autotest/contrib/
H A Drun-pool-inventory12 site_utils/balance_pools.py --all-boards all_critical_pools &> logs/dut-data/$BALANCE_POOL_LOG
H A Drun-stable-update9 LOGDIR=logs/stable-version
/external/ltp/testcases/realtime/scripts/
H A Dsetenv.sh19 export LOG_DIR=$TESTS_DIR/logs
/external/autotest/server/site_tests/android_CrashLogging/
H A Dandroid_CrashLogging.py16 # Number of times to retry the command the find command to find logs.
20 """Confirm that crash logs are generated for native crashes."""
25 """Confirm that crash logs are generated for crashes.
52 logs = None
55 logs = self.host.run_output(
60 raise error.TestFail('No crash logs were created because of a '
62 'where crash logs are written to does not '
64 if logs:
68 if not logs:
69 raise error.TestFail('No crash logs wer
[all...]
/external/autotest/server/site_tests/brillo_CrashLogging/
H A Dbrillo_CrashLogging.py14 # Number of times to retry the command the ls command to find logs.
18 """Confirm that crash logs are generated for native crashes."""
23 """Confirm that crash logs are generated for native crashes.
32 # Remove any existing crash logs.
47 logs = None
50 logs = self.host.run_output(
55 raise error.TestFail('No crash logs were created because of a '
57 'where crash logs are written to does not '
59 if logs:
63 if not logs
[all...]
/external/autotest/client/site_tests/platform_CheckErrorsInLog/
H A Dplatform_CheckErrorsInLog.py17 Check system logs for errors.
45 logs = ['kern.log', 'syslog', 'dmesg']
47 for log in logs:
55 raise error.TestFail('%d failures found in logs' % errors)
/external/autotest/client/cros/video/
H A Dhelper_logger.py11 """Return vmodule flag for chrome to enable VDAs/VEAs/JDAs/V4L2IP logs"""
23 Return decorator that make verbose video logs enable
76 Enable logs before the test, execute the test and disable logs
79 In any case, it is guranteed to disable logs.
104 Enable/Disable video logs.
107 self.logs = []
120 self.logs.append({'files': files,
126 """Enable logs"""
127 for log in self.logs
[all...]
/external/skia/infra/bots/recipe_modules/flavor/resources/
H A Dsymbolize_stack_trace.py27 # stderr and stdout being separate files, which eliminated the interwoven logs.
29 # about the logs of previous steps without using a wrapper like this.
32 logs = collections.deque(maxlen=200)
38 logs.append(line)
57 for line in logs:
/external/apache-http/src/org/apache/commons/logging/
H A DLogSource.java66 static protected Hashtable logs = new Hashtable(); field in class:LogSource
200 Log log = (Log) (logs.get(name));
203 logs.put(name, log);
259 * all logs known to me.
262 return (String[]) (logs.keySet().toArray(new String[logs.size()]));
/external/walt/docs/
H A DPrivacyPolicy.md7 unless you explicitly opt-in to upload test logs and results to our server in the app settings
10 If you choose to opt-in to uploading the logs, please note that the logs can (and likely will) become publicly available to all.
/external/autotest/client/site_tests/graphics_dEQP/scripts/
H A Dprocess_logs.py59 logs = []
63 # DEBUG logs have more information than INFO logs, especially for hasty.
64 name = os.path.join('logs', job_id + '_graphics_dEQP.DEBUG')
65 logs.append(Logfile(job_id, name, gs_path))
66 for log in logs:
68 return logs
72 logs = []
73 for name in glob.glob(os.path.join('logs', '*_graphics_dEQP.INFO')):
75 logs
332 logs = get_local_logs() variable
[all...]
/external/webrtc/webrtc/test/
H A Dtest_suite.cc21 DEFINE_bool(logs, false, "print logs to stderr");
/external/parameter-framework/upstream/parameter/log/include/log/
H A DLogWrapper.h99 * @param[in] logs list of information to log
101 LogWrapper &operator<<(const std::list<std::string> &logs) argument
104 std::string formatedLogs = utility::asString(logs, separator);
/external/autotest/site_utils/
H A Dclear.sh37 sudo rm -rf ${AUTOTEST_DIR}/logs/*
/external/ltp/testscripts/
H A Dtest_realtime.sh53 clean: all logs deleted, make clean performed
114 rm -rf logs
140 # This will clobber logs, out files, .o's etc
174 if [ ! -e "logs" ]; then
175 mkdir logs
176 echo " creating logs directory as $TESTS_DIR/logs "
177 chmod -R 775 logs
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLog.java13 private static List<LogItem> logs = new ArrayList<LogItem>(); field in class:ShadowLog
91 logs.add(new LogItem(level, tag, msg, throwable));
113 return logs;
117 logs.clear();
/external/fio/tools/plot/samples/
H A DMakefile4 tar -xf fio-logs.tar.gz
/external/autotest/
H A D.gitignore40 logs/*
/external/protobuf/jenkins/
H A Dpull_request_in_docker.sh24 LOG_OUTPUT_DIR=$OUTPUT_DIR/logs
32 # $DIR/logs/1/cpp/stdout
33 # $DIR/logs/1/cpp/stderr
34 # $DIR/logs/1/csharp/stdout
35 # $DIR/logs/1/csharp/stderr
36 # $DIR/logs/1/java_jdk7/stdout
37 # $DIR/logs/1/java_jdk7/stderr

Completed in 1127 milliseconds

1234