File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11
11
#define V8_MAJOR_VERSION 6
12
12
#define V8_MINOR_VERSION 1
13
13
#define V8_BUILD_NUMBER 534
14
- #define V8_PATCH_LEVEL 47
14
+ #define V8_PATCH_LEVEL 48
15
15
16
16
// Use 1 for candidates and 0 otherwise.
17
17
// (Boolean macro values are not supported by all preprocessors.)
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def IsFailureOutput(self, testcase):
107
107
expected_lines , actual_lines , fillvalue = '' ):
108
108
pattern = re .escape (expected .rstrip () % env )
109
109
pattern = pattern .replace ("\\ *" , ".*" )
110
- pattern = pattern .replace ("\\ {NUMBER\\ }" , "\d(?:\.\d*)?" )
110
+ pattern = pattern .replace ("\\ {NUMBER\\ }" , "\d+ (?:\.\d*)?" )
111
111
pattern = "^%s$" % pattern
112
112
if not re .match (pattern , actual ):
113
113
return True
You can’t perform that action at this time.
0 commit comments