summaryrefslogtreecommitdiff
path: root/tcwg-lnt/tcwg-lnt-03/config
diff options
context:
space:
mode:
Diffstat (limited to 'tcwg-lnt/tcwg-lnt-03/config')
-rw-r--r--tcwg-lnt/tcwg-lnt-03/config67
1 files changed, 33 insertions, 34 deletions
diff --git a/tcwg-lnt/tcwg-lnt-03/config b/tcwg-lnt/tcwg-lnt-03/config
index 37f1795c..57a86b1a 100644
--- a/tcwg-lnt/tcwg-lnt-03/config
+++ b/tcwg-lnt/tcwg-lnt-03/config
@@ -1,40 +1,39 @@
-lnt_server_port=38240
+#!/bin/bash
+
lnt_server_name="LNT-TCWG (experimental)"
lnt_repo_branch="linaro-local/experimental"
-check_configs=(
- tcwg_binutils_check
- tcwg_bootstrap_check
- tcwg_gcc_check
- tcwg_gdb_check
- tcwg_glibc_check
- tcwg_gnu_cross_check_binutils
- tcwg_gnu_cross_check_gcc
- tcwg_gnu_embed_check_binutils
- tcwg_gnu_embed_check_gcc
- tcwg_gnu_mingw_check_binutils
- tcwg_gnu_mingw_check_gcc
- tcwg_gnu_native_check_binutils
- tcwg_gnu_native_check_gcc
- tcwg_gnu_native_check_gdb
- tcwg_gnu_native_check_glibc
- tcwg_gnu_native_fast_check_gcc
- tcwg_gnu_native_fast_check_gdb
-)
+declare -A lnt_projects=(
+ [tcwg_binutils_check]=tcwg_check
+ [tcwg_bootstrap_check]=tcwg_check
+ [tcwg_gcc_check]=tcwg_check
+ [tcwg_gdb_check]=tcwg_check
+ [tcwg_glibc_check]=tcwg_check
+ [tcwg_gnu_cross_check_binutils]=tcwg_check
+ [tcwg_gnu_cross_check_gcc]=tcwg_check
+ [tcwg_gnu_embed_check_binutils]=tcwg_check
+ [tcwg_gnu_embed_check_gcc]=tcwg_check
+ [tcwg_gnu_mingw_check_binutils]=tcwg_check
+ [tcwg_gnu_mingw_check_gcc]=tcwg_check
+ [tcwg_gnu_native_check_binutils]=tcwg_check
+ [tcwg_gnu_native_check_gcc]=tcwg_check
+ [tcwg_gnu_native_check_gdb]=tcwg_check
+ [tcwg_gnu_native_check_glibc]=tcwg_check
+ [tcwg_gnu_native_fast_check_gcc]=tcwg_check
+ [tcwg_gnu_native_fast_check_gdb]=tcwg_check
-bmk_configs=(
- tcwg_bmk-code_size-coremark
- tcwg_bmk-code_size-cpu2017fast
- tcwg_bmk-code_size-cpu2017rate
- tcwg_bmk-code_size-spec2k6
- tcwg_bmk-code_speed-coremark
- tcwg_bmk-code_speed-cpu2017rate
- tcwg_bmk-code_speed-cpu2017speed
- tcwg_bmk-code_speed-spec2k6
- tcwg_bmk-code_vect-cpu2017fast
- tcwg_bmk-code_vect-cpu2017rate
- tcwg_bmk-code_vect-spec2k6
- tcwg_bmk-fujitsu_speed-cpu2017speed
- tcwg_bmk-qc_speed-cpu2017rate
+ [tcwg_bmk-code_size-coremark]=tcwg_bmk
+ [tcwg_bmk-code_size-cpu2017fast]=tcwg_bmk
+ [tcwg_bmk-code_size-cpu2017rate]=tcwg_bmk
+ [tcwg_bmk-code_size-spec2k6]=tcwg_bmk
+ [tcwg_bmk-code_speed-coremark]=tcwg_bmk
+ [tcwg_bmk-code_speed-cpu2017rate]=tcwg_bmk
+ [tcwg_bmk-code_speed-cpu2017speed]=tcwg_bmk
+ [tcwg_bmk-code_speed-spec2k6]=tcwg_bmk
+ [tcwg_bmk-code_vect-cpu2017fast]=tcwg_bmk
+ [tcwg_bmk-code_vect-cpu2017rate]=tcwg_bmk
+ [tcwg_bmk-code_vect-spec2k6]=tcwg_bmk
+ [tcwg_bmk-fujitsu_speed-cpu2017speed]=tcwg_bmk
+ [tcwg_bmk-qc_speed-cpu2017rate]=tcwg_bmk
)