diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-03-28 10:23:40 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-03-28 14:07:00 +0100 |
commit | 7c3803a09bf6407a6f1b8ed536d90a0f00f8a48b (patch) | |
tree | 1ea050311929749bc4c0a7cbdec5f49feb617d62 /test | |
parent | fcabff5702fd00d575f1f214bf9b6ced037be53b (diff) | |
download | justbuild-7c3803a09bf6407a6f1b8ed536d90a0f00f8a48b.tar.gz |
End-to-end tests: be independent of local rc files
Diffstat (limited to 'test')
-rw-r--r-- | test/end-to-end/built-in-rules/export_counting.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/end-to-end/built-in-rules/export_counting.sh b/test/end-to-end/built-in-rules/export_counting.sh index 93564434..a24c502a 100644 --- a/test/end-to-end/built-in-rules/export_counting.sh +++ b/test/end-to-end/built-in-rules/export_counting.sh @@ -89,14 +89,14 @@ EOF # The export target is analysed in 3 configuration, but only two # are different in the relevant part of the configuration; so # we should see two uncached export targets. -"${JUST_MR}" --just "${JUST}" --local-build-root "${LBR}" \ +"${JUST_MR}" --just "${JUST}" --local-build-root "${LBR}" --norc \ build -f "${LOG}" --log-limit 4 2>&1 echo grep 'xport.*2 uncached' "${LOG}" echo # After building once, the export targets should be cached. -"${JUST_MR}" --just "${JUST}" --local-build-root "${LBR}" \ +"${JUST_MR}" --just "${JUST}" --local-build-root "${LBR}" --norc \ build -f "${LOG}" --log-limit 4 2>&1 echo grep 'xport.*2 cached' "${LOG}" |