summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-07-16 17:29:54 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-07-16 17:29:54 +0000
commitebf7321c7731d66df14a92fa4c23455f0dc48fdc (patch)
tree60b7c5209e4448ea4fe46c6661d753afb9e60561
parentff69267fd2638f7dd4b508161c4aa7eec6a40452 (diff)
tcwg_gnu-build.sh: Build binutils for native GCC testing
Change-Id: I1cc69cd756f2e7a95bee14753c23ef70e1dd741d
-rwxr-xr-xtcwg_gnu-build.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/tcwg_gnu-build.sh b/tcwg_gnu-build.sh
index 5e055668..8daedce2 100755
--- a/tcwg_gnu-build.sh
+++ b/tcwg_gnu-build.sh
@@ -217,8 +217,14 @@ case "$type_of_test" in
run_step skip_on_fail 0 build_abe dejagnu
run_step skip_on_fail 1 build_abe check_gcc -- "${runtestflags[@]}"
;;
- check_*)
- run_step skip_on_fail -2 build_abe ${type_of_test#check_}
+ check_binutils)
+ run_step skip_on_fail -2 build_abe binutils
+ run_step skip_on_fail 0 build_abe dejagnu
+ run_step skip_on_fail 1 build_abe check_binutils -- "${runtestflags[@]}"
+ ;;
+ check_gcc*|check_bootstrap*)
+ run_step skip_on_fail -2 build_abe binutils
+ run_step skip_on_fail -1 build_abe ${type_of_test#check_}
run_step skip_on_fail 0 build_abe dejagnu
run_step skip_on_fail 1 build_abe ${type_of_test} -- "${runtestflags[@]}"
;;