Deleted Added
sdiff udiff text old ( 13034:69726d1f9209 ) new ( 13037:ae6f69952478 )
full compact
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;

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

192
193 def warning_filt(num):
194 return (r'^\nWarning: \(W{}\) .*\n(In file: .*\n)?'
195 r'(In process: [\w.]* @ .*\n)?').format(num)
196
197 ref_filt = merge_filts(
198 r'^\nInfo: /OSCI/SystemC: Simulation stopped by user.\n',
199 r'^SystemC Simulation\n',
200 warning_filt(540),
201 warning_filt(569),
202 warning_filt(571),
203 r'^\nInfo: \(I804\) /IEEE_Std_1666/deprecated: ' +
204 r'You can turn off(.*\n){7}'
205 )
206 test_filt = merge_filts(
207 r'^Global frequency set at \d* ticks per second\n'
208 )
209
210 def __init__(self, ref, test, tag, out_dir):

--- 304 unchanged lines hidden ---