verify.py (13055:59ec7f6db329) verify.py (13056:f483df6334a5)
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;

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

200 filts = '|'.join(filts)
201 return re.compile(filts, flags=re.MULTILINE)
202
203 ref_filt = merge_filts(
204 r'^\nInfo: /OSCI/SystemC: Simulation stopped by user.\n',
205 r'^SystemC Simulation\n',
206 r'^\nInfo: \(I804\) /IEEE_Std_1666/deprecated: ' +
207 r'You can turn off(.*\n){7}',
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;

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

200 filts = '|'.join(filts)
201 return re.compile(filts, flags=re.MULTILINE)
202
203 ref_filt = merge_filts(
204 r'^\nInfo: /OSCI/SystemC: Simulation stopped by user.\n',
205 r'^SystemC Simulation\n',
206 r'^\nInfo: \(I804\) /IEEE_Std_1666/deprecated: ' +
207 r'You can turn off(.*\n){7}',
208 r'^\nInfo: \(I804\) /IEEE_Std_1666/deprecated: \n' +
209 r' sc_clock\(const char(.*\n){3}',
208 warning_filt(540),
209 warning_filt(569),
210 warning_filt(571),
211 info_filt(804),
212 )
213 test_filt = merge_filts(
214 r'^Global frequency set at \d* ticks per second\n',
215 info_filt(804),

--- 307 unchanged lines hidden ---
210 warning_filt(540),
211 warning_filt(569),
212 warning_filt(571),
213 info_filt(804),
214 )
215 test_filt = merge_filts(
216 r'^Global frequency set at \d* ticks per second\n',
217 info_filt(804),

--- 307 unchanged lines hidden ---