summaryrefslogtreecommitdiff
path: root/tcwg-update-tested.sh
AgeCommit message (Collapse)Author
2018-11-26Don't ignore "null" values in variable expansionsMaxim Kuvyrkov
Replace ${var:-default} with ${var-default}. I learned something new about shell scripting today. From bash manual: === When not performing substring expansion, using the form described below (e.g., ‘:-’), Bash tests for a parameter that is unset or null. Omitting the colon results in a test only for a parameter that is unset. Put another way, if the colon is included, the operator tests for both parameter’s existence and that its value is not null; if the colon is omitted, the operator tests only for existence. === The immediate problem I need to fix is handling of host_aarchXX_excludecheck and host_x86_64_excludecheck parameters in tcwg-buildfarm.sh. With ":-" syntax the empty ("null") values are replaced by defaults, causing GCC testsuite to be ignored on aarchXX hosts when "--host_aarchXX_excludecheck ''" is given. There happens to be a single usage ":-" in ${rw:-rw} in start-container-qemu.sh, where ":-" is actually needed. Change-Id: Ibc8e070b698e1c76e2161eb65d40639b8cdec1f3
2018-08-10tcwg-update-tested: Remove stale rebase directory (if any).Maxim Kuvyrkov
Change-Id: I8aebd07199319b7b6c063870b27883f342f4adde
2018-06-04tcwg-update-tested: Avoid interactive questions.Maxim Kuvyrkov
Change-Id: If1ba5a74b988a55ee04d252cec8bf064c952cd97
2018-06-04tcwg-update-tested: Fix.Maxim Kuvyrkov
Change-Id: I396de4eab96af4938de724429f8f35fc35f39dd8
2018-06-01tcwg-update-tested.sh: Add handling for dockerfiles.git:tcwg-testedMaxim Kuvyrkov
Change-Id: I5cecb64ffe897e1a2d7d4a4ad3dca6fb9195f69e
2018-06-01tcwg-update-tested.sh: New script, move code from tcwg-abe-tested.yamlMaxim Kuvyrkov
Change-Id: I5e1ffde89556e5063d68d93335603006e0c81bf2