File tree 4 files changed +4
-4
lines changed
src/trusted/service_runtime
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3623,7 +3623,7 @@ windows_coverage_env = windows_debug_env.Clone(
3623
3623
# needed.
3624
3624
MANIFEST_FILE = None ,
3625
3625
COVERAGE_ANALYZER_DIR = r'..\third_party\coverage_analyzer\bin' ,
3626
- COVERAGE_ANALYZER = '$COVERAGE_ANALYZER_DIR\coverage_analyzer.exe' ,
3626
+ COVERAGE_ANALYZER = r '$COVERAGE_ANALYZER_DIR\coverage_analyzer.exe' ,
3627
3627
)
3628
3628
# TODO(bradnelson): Switch nacl to common testing process so this won't be
3629
3629
# needed. Ignoring instrumentation failure as that's easier
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ def BuildEnvironmentSConscripts(env):
129
129
else :
130
130
raise SCons .Errors .UserError (
131
131
'Bad location for a SConscript. "%s" is not under '
132
- '\$TARGET_ROOT or \$MAIN_DIR' % c_script )
132
+ r '\$TARGET_ROOT or \$MAIN_DIR' % c_script )
133
133
134
134
def UsingNaclMode ():
135
135
build_modes = SCons .Script .ARGUMENTS .get ('MODE' ) or SCons .Script .GetOption ('build_mode' )
Original file line number Diff line number Diff line change @@ -824,7 +824,7 @@ if env.Bit('build_x86_64'):
824
824
825
825
if env .Bit ('build_x86' ) and env .Bit ('nacl_static_link' ):
826
826
RE_HELLO = '^(Hello, World!)$'
827
- RE_IDENT = '^\[[0-9,:.]*\] (e_ident\+1 = ELF)$'
827
+ RE_IDENT = r '^\[[0-9,:.]*\] (e_ident\+1 = ELF)$'
828
828
829
829
node = env .CommandSelLdrTestNacl (
830
830
'nacl_log.out' ,
Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ def GetNaClSignalInfoFromStderr(stderr):
356
356
357
357
# Scan for signal msg in reverse order
358
358
for curline in reversed (lines ):
359
- match = re .match ('\*\* (Signal|Mach exception) (\d+) from '
359
+ match = re .match (r '\*\* (Signal|Mach exception) (\d+) from '
360
360
'(trusted|untrusted) code' , str (curline ))
361
361
if match is not None :
362
362
return match .group (0 )
You can’t perform that action at this time.
0 commit comments