Changeset 195d1d8
- Timestamp:
 - May 7, 2024, 4:43:41 PM (18 months ago)
 - Branches:
 - master
 - Children:
 - 083e637
 - Parents:
 - 0f4c513
 - Files:
 - 
      
- 3 edited
 
- 
          
  src/ResolvExpr/Cost.h (modified) (2 diffs)
 - 
          
  tests/pybin/tools.py (modified) (2 diffs)
 - 
          
  tests/test.py (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/ResolvExpr/Cost.h
r0f4c513 r195d1d8 10 10 // Created On : Sun May 17 09:39:50 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jun 21 11:39:13 201913 // Update Count : 6 312 // Last Modified On : Fri May 3 17:15:41 2024 13 // Update Count : 64 14 14 // 15 15 … … 19 19 #include <cassert> 20 20 #include <climits> 21 #include <cstdint> 21 22 22 23 namespace ResolvExpr {  - 
      
tests/pybin/tools.py
r0f4c513 r195d1d8 120 120 return (False, "'file EXPECT' failed with code {} '{}'".format(code, err)) 121 121 122 match = re.search( ".*: (.*)", out)122 match = re.search(r".*: (.*)", out) 123 123 124 124 if not match: … … 306 306 sys.exit(1) 307 307 308 re_jobs = re.search( "--jobserver-(auth|fds)", out)308 re_jobs = re.search(r"--jobserver-(auth|fds)", out) 309 309 if not re_jobs: 310 310 print("ERROR: cannot find Makefile jobserver version", file=sys.stderr)  - 
      
tests/test.py
r0f4c513 r195d1d8 23 23 24 24 def match_test(path): 25 match = re.search( "^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$"% settings.SRCDIR, path)25 match = re.search(r'^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$' % settings.SRCDIR, path) 26 26 if match : 27 27 test = Test() … … 359 359 sys.exit(1) 360 360 361 print(' '.join(re.findall( '([^\s]+\.cfa)', out)), end=' ')361 print(' '.join(re.findall(r'([^\s]+\.cfa)', out)), end=' ') 362 362 363 363 print('')  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.