From: Bobby R. Bruce Date: Tue, 4 Aug 2020 19:58:56 +0000 (-0700) Subject: util,tests: Added .txt file extension to txt files X-Git-Tag: v20.1.0.0~252 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b21175bebac56581d8a820ba4f771aea788af4ff;p=gem5.git util,tests: Added .txt file extension to txt files This is a small improvement. In our Jenkins, https://jenkins.gem5.org, we archive the `compile-test-out` directory. Opening these `*.stderr` and `*.stdout` files through the Jenkins interface was problematic. The `.txt` extension makes these files easier to open. Change-Id: I4026efec2118179eaed775c7560510cd16f349a6 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/32154 Reviewed-by: Ciro Santilli Reviewed-by: Hoa Nguyen Reviewed-by: Daniel Carvalho Maintainer: Jason Lowe-Power Tested-by: kokoro --- diff --git a/util/compiler-tests.sh b/util/compiler-tests.sh index cd47bd936..ccb243706 100755 --- a/util/compiler-tests.sh +++ b/util/compiler-tests.sh @@ -102,8 +102,8 @@ for compiler in ${images[@]}; do for build_opt in ${opts[@]}; do build="${builds[$build_index]}" build_out="build/$build/gem5$build_opt" - build_stdout="${test_dir}/${compiler}/${build}${build_opt}.stdout" - build_stderr="${test_dir}/${compiler}/${build}${build_opt}.stderr" + build_stdout="${test_dir}/${compiler}/${build}${build_opt}.stdout.txt" + build_stderr="${test_dir}/${compiler}/${build}${build_opt}.stderr.txt" # Clean the build rm -rf "${build_dir}"