diff --git a/tests/jenkins/presubmit-stage2.sh b/tests/jenkins/presubmit-stage2.sh index d4d5841de6..6e73394a0d 100755 --- a/tests/jenkins/presubmit-stage2.sh +++ b/tests/jenkins/presubmit-stage2.sh @@ -46,5 +46,5 @@ set -e # Look for tests in the gem5 subdirectory # Once complete, run the Google Tests cd tests -./main.py run -j4 -t4 gem5 && scons -C .. --no-compress-debug \ +./main.py run -j4 -t4 gem5 -vv && scons -C .. --no-compress-debug \ build/ARM/unittests.opt diff --git a/tests/nightly.sh b/tests/nightly.sh index 9f69eb1450..b785d553b7 100755 --- a/tests/nightly.sh +++ b/tests/nightly.sh @@ -78,7 +78,7 @@ unit_test debug # Run the gem5 long tests. docker run -u $UID:$GID --volume "${gem5_root}":"${gem5_root}" -w \ "${gem5_root}"/tests --rm gcr.io/gem5-test/ubuntu-20.04_all-dependencies \ - ./main.py run --length long -j${threads} -t${threads} + ./main.py run --length long -j${threads} -t${threads} -vv # Run the GPU tests. # For the GPU tests we compile and run GCN3_X86 inside a gcn-gpu container. diff --git a/tests/weekly.sh b/tests/weekly.sh index 172d9557ec..d65ee40894 100755 --- a/tests/weekly.sh +++ b/tests/weekly.sh @@ -42,7 +42,7 @@ fi # Run the gem5 very-long tests. docker run -u $UID:$GID --volume "${gem5_root}":"${gem5_root}" -w \ "${gem5_root}"/tests --rm gcr.io/gem5-test/ubuntu-20.04_all-dependencies \ - ./main.py run --length very-long -j${threads} -t${threads} + ./main.py run --length very-long -j${threads} -t${threads} -vv mkdir -p tests/testing-results