verify.py (13250:4680968cc4cb) verify.py (13333:1c8ced831e21)
1#!/usr/bin/env python2
2#
3# Copyright 2018 Google, Inc.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 251 unchanged lines hidden (view full) ---

260 warning_filt(571),
261 info_filt(804),
262 info_filt(704),
263 in_file_filt,
264 )
265 test_filt = merge_filts(
266 r'^Global frequency set at \d* ticks per second\n',
267 r'^info: Entering event queue @ \d*\. Starting simulation\.\.\.\n',
1#!/usr/bin/env python2
2#
3# Copyright 2018 Google, Inc.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 251 unchanged lines hidden (view full) ---

260 warning_filt(571),
261 info_filt(804),
262 info_filt(704),
263 in_file_filt,
264 )
265 test_filt = merge_filts(
266 r'^Global frequency set at \d* ticks per second\n',
267 r'^info: Entering event queue @ \d*\. Starting simulation\.\.\.\n',
268 r'warn: [^(]+\([^)]*\)( \[with [^]]*\])? not implemented\.\n',
269 r'warn: Ignoring request to set stack size\.\n',
270 info_filt(804),
271 in_file_filt,
272 )
273
274 def apply_filters(self, data, filts):
275 re.sub(filt, '', data)
276

--- 314 unchanged lines hidden ---
268 r'warn: Ignoring request to set stack size\.\n',
269 info_filt(804),
270 in_file_filt,
271 )
272
273 def apply_filters(self, data, filts):
274 re.sub(filt, '', data)
275

--- 314 unchanged lines hidden ---