SConscript (9401:9f0918fbb07f) SConscript (9435:e7c4f86ffa40)
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

58# List of signals that indicate that we should retry the test rather
59# than consider it failed.
60retry_signals = (signal.SIGTERM, signal.SIGKILL, signal.SIGINT,
61 signal.SIGQUIT, signal.SIGHUP)
62
63# regular expressions of lines to ignore when diffing outputs
64output_ignore_regexes = (
65 '^command line:', # for stdout file
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

58# List of signals that indicate that we should retry the test rather
59# than consider it failed.
60retry_signals = (signal.SIGTERM, signal.SIGKILL, signal.SIGINT,
61 signal.SIGQUIT, signal.SIGHUP)
62
63# regular expressions of lines to ignore when diffing outputs
64output_ignore_regexes = (
65 '^command line:', # for stdout file
66 '^M5 compiled ', # for stderr file
67 '^M5 started ', # for stderr file
68 '^M5 executing on ', # for stderr file
66 '^gem5 compiled ', # for stderr file
67 '^gem5 started ', # for stderr file
68 '^gem5 executing on ', # for stderr file
69 '^Simulation complete at', # for stderr file
70 '^Listening for', # for stderr file
71 'listening for remote gdb', # for stderr file
72 )
73
74output_ignore_args = ' '.join(["-I '"+s+"'" for s in output_ignore_regexes])
75
76output_ignore_args += ' --exclude=stats.txt --exclude=outdiff'

--- 265 unchanged lines hidden ---
69 '^Simulation complete at', # for stderr file
70 '^Listening for', # for stderr file
71 'listening for remote gdb', # for stderr file
72 )
73
74output_ignore_args = ' '.join(["-I '"+s+"'" for s in output_ignore_regexes])
75
76output_ignore_args += ' --exclude=stats.txt --exclude=outdiff'

--- 265 unchanged lines hidden ---