 Chromium Code Reviews
 Chromium Code Reviews Issue 228943009:
  MIPS: Add big-endian support for MIPS.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 228943009:
  MIPS: Add big-endian support for MIPS.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: tools/testrunner/local/statusfile.py | 
| diff --git a/tools/testrunner/local/statusfile.py b/tools/testrunner/local/statusfile.py | 
| index 826b576f2308c6f4f66350867019ae6175115bd5..9c031bf4d92b8b3c89312b778aa51d0d65879772 100644 | 
| --- a/tools/testrunner/local/statusfile.py | 
| +++ b/tools/testrunner/local/statusfile.py | 
| @@ -53,7 +53,7 @@ DEFS = {FAIL_OK: [FAIL, OKAY], | 
| # Support arches, modes to be written as keywords instead of strings. | 
| VARIABLES = {ALWAYS: True} | 
| for var in ["debug", "release", "android_arm", "android_arm64", "android_ia32", | 
| - "arm", "arm64", "ia32", "mipsel", "x64", "nacl_ia32", "nacl_x64", | 
| + "arm", "arm64", "ia32", "mips", "mipsel", "x64", "nacl_ia32", "nacl_x64", | 
| 
Jakob Kummerow
2014/04/15 08:11:20
nit: adjust the line break to keep 80col format
 
dusmil
2014/04/15 15:22:22
Done.
 | 
| "macos", "windows", "linux"]: | 
| VARIABLES[var] = var |