| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 189e5e5 commit 2b6d283
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -915,6 +915,7 @@ def GetTestStatus(self, context, sections, defs): | |||
| 915 | 915 | TIMEOUT_SCALEFACTOR = { | |
| 916 | 916 | 'arm' : { 'debug' : 8, 'release' : 3 }, # The ARM buildbots are slow. | |
| 917 | 917 | 'riscv64' : { 'debug' : 8, 'release' : 3 }, # The riscv devices are slow. | |
| 918 | + 'loong64' : { 'debug' : 4, 'release' : 1 }, | ||
| 918 | 919 | 'ia32' : { 'debug' : 4, 'release' : 1 }, | |
| 919 | 920 | 'ppc' : { 'debug' : 4, 'release' : 1 }, | |
| 920 | 921 | 's390' : { 'debug' : 4, 'release' : 1 } } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -99,6 +99,8 @@ def GuessArchitecture(): | |||
| 99 | 99 | return 's390' | |
| 100 | 100 | elif id == 'riscv64': | |
| 101 | 101 | return 'riscv64' | |
| 102 | + elif id == 'loong64': | ||
| 103 | + return 'loong64' | ||
| 102 | 104 | else: | |
| 103 | 105 | id = platform.processor() | |
| 104 | 106 | if id == 'powerpc': | |
| Back | FazBrowse Home | New Git URL |
0 commit comments