# Copyright 2018 the V8 project authors. All rights reserved.# Use of this source code is governed by a BSD-style license that can be# found in the LICENSE file.from.importbaseclassOutProc(base.ExpectedOutProc):def_is_failure_output(self,output):ifoutput.exit_code!=0:returnTruereturnsuper(OutProc,self)._is_failure_output(output)def_ignore_expected_line(self,line):return(line.startswith('#')orsuper(OutProc,self)._ignore_expected_line(line))