I've submitted this change which reverts the changes:
https://gem5-review.googlesource.com/c/public/gem5/+/65732.

I don't consider this a proper solution and i'm only submitting it so I can
continue to run the nightly tests (hopefully they start to pass again...).
So, in short, feel free to revert these reverts at some point.

Kind regards,
Bobby

--
Dr. Bobby R. Bruce
Room 3050,
Kemper Hall, UC Davis
Davis,
CA, 95616

web: https://www.bobbybruce.net


On Thu, Nov 17, 2022 at 4:13 PM Bobby Bruce <bbr...@ucdavis.edu> wrote:

> Hey all,
>
> So this patch worked but we ran into another bug which also triggered a
> timeout. This time it's due to a stalling when running the realview tests.
> I'm unsure right now if this affects other tests, but at least the
> `SuiteUID:tests/gem5/fs/linux/arm/test.py:realview-switcheroo-noncaching-timing-ALL-x86_64-opt`
> test reaches a point and stalls. This can be reproduced locally with:
>
> ```
> ./build/ALL/gem5.opt tests/gem5/fs/linux/arm/run.py
> tests/gem5/configs/realview-switcheroo-noncaching-timing.py
> tests/gem5/resources/arm “$(pwd)”
> ```
>
> The test outputs the following then halts indefinitely:
>
> ```
> Global frequency set at 1000000000000 ticks per second
> build/ALL/base/vnc/vncserver.cc:163: warn: Sockets disabled, not accepting
> vnc client connections
> build/ALL/dev/serial/terminal.cc:170: warn: Sockets disabled, not
> accepting terminal connections
> build/ALL/base/remote_gdb.cc:416: warn: Sockets disabled, not accepting
> gdb connections
> build/ALL/dev/arm/energy_ctrl.cc:252: warn: Existing EnergyCtrl, but no
> enabled DVFSHandler found.
> build/ALL/dev/arm/gic_v3_distributor.cc:884: warn:
> Gicv3Distributor::write(): setting ARE_NS to 0 is not supported!
> build/ALL/dev/arm/gic_v3_distributor.cc:889: warn:
> Gicv3Distributor::write(): setting ARE_S to 0 is not supported!
> build/ALL/dev/arm/rv_ctrl.cc:176: warn: SCReg: Access to unknown device
> dcc0:site0:pos0:fn7:dev0
> build/ALL/sim/power_state.cc:105: warn: PowerState: Already in the
> requested power state, request ignored
> build/ALL/dev/arm/gic_v3_distributor.cc:913: warn:
> Gicv3Distributor::write(): setting ARE_NS to 0 is not supported!
> ```
>
> I did a bisect and found the commit that breaks this test:
> https://gem5-review.googlesource.com/c/public/gem5/+/65291.
>
> If you revert this, with the following:
>
> ```
> git revert dd2f1fb2f8520849f10fc25fc5eab5beaa90a7d4 #
> https://gem5-review.googlesource.com/c/public/gem5/+/65174/7
>
> git revert 47bd56ee71ba1d684138365e7123aa779989ba1d #
> https://gem5-review.googlesource.com/c/public/gem5/+/65291
> ```
>
> the test passes again.
>
> @Giacomo : Do you have any good solutions for this bug? Above is pretty
> much all the information I have regarding this failure.
>
> Kind regards,
> Bobby
> --
> Dr. Bobby R. Bruce
> Room 3050,
> Kemper Hall, UC Davis
> Davis,
> CA, 95616
>
> web: https://www.bobbybruce.net
>
>
> On Tue, Nov 15, 2022 at 7:25 AM Jason Lowe-Power <ja...@lowepower.com>
> wrote:
> >
> > Hi Matt,
> >
> > That might work for KVM, but it doesn't work for the timing CPUs as far
> as I know. The problem we ran into was not with KVM but with the timing
> CPUs.
> >
> > The underlying problem is that we are not modeling the system correctly.
> Either there's something wrong with our cpuid instruction (it's definitely
> not a "valid" result! but I'm not sure if it's the main problem here), or
> there's something wrong with our APIC implementation. Almost certainly both
> are true, but I don't know which one is the main culprit here.
> >
> > Cheers,
> > Jason
> >
> > On Mon, Nov 14, 2022 at 5:05 PM Poremba, Matthew via gem5-dev <
> gem5-dev@gem5.org> wrote:
> >>
> >> [AMD Official Use Only - General]
> >>
> >>
> >> Hi Bobby,
> >>
> >>
> >>
> >>
> >>
> >> I have seen this issue with do_boot_cpu as well. The short story is I
> had to use multiple event queues and set the “sim_quantum” of the Root
> object to 1e8:  https://gem5-review.googlesource.com/c/public/gem5/+/65131.
>   Note that 1e8 is different from the 1e9 value used elsewhere in gem5.
> Based on a test of doing 100 boots with 4 CPUs, 1e8 booted all four CPUs
> every time and 1e9 booted all four CPUs only twice.
> >>
> >>
> >>
> >>
> >>
> >> -Matt
> >>
> >>
> >>
> >> From: Bobby Bruce via gem5-dev <gem5-dev@gem5.org>
> >> Sent: Monday, November 14, 2022 10:37 AM
> >> To: gem5-dev@gem5.org
> >> Cc: Bobby Bruce <bbr...@ucdavis.edu>
> >> Subject: [gem5-dev] Re: Build failed in Jenkins: nightly #413
> >>
> >>
> >>
> >> Caution: This message originated from an External Source. Use proper
> caution when opening attachments, clicking links, or responding.
> >>
> >>
> >>
> >> Hey all,
> >>
> >>
> >>
> >> I've submitted the following patch to Gerrit which should fix the
> timeout issues we're seeing with the Jenkin's nightly build:
> https://gem5-review.googlesource.com/c/public/gem5/+/65492.
> >>
> >>
> >>
> >> The high level summary of the problem is as follows:
> >>
> >>
> >>
> >> - Up until recently we were using "m5 Simulator" as the "vendor_string"
> for each CPU in a gem5 simulation by default.
> >>
> >> - The latest versions of GLIB are now much stricter in checking system
> capabilities. It does not recognize "m5 Simulator" as a legitimate vendor
> and this causes problems. We became aware of this when trying to run SE
> workloads in Ubuntu 22.04 or running FS Ubuntu 22.04 workloads.
> >>
> >> - Jason changed the default vendor string to "AuthenticAMD" via this
> commit: https://gem5-review.googlesource.com/c/public/gem5/+/64831. This
> fixed the above problems but due to a bug, highlighted here:
> https://gem5.atlassian.net/browse/GEM5-1300, Linux boots were taking an
> extremely long time. This caused our Nightly tests to reach timeout.
> >>
> >> - Our solution is to change the default vector string "HygonGenuine".
> This fixes all of the problems (GLIB problems and long boot times).
> However, we'd prefer to use "AuthenticAMD" over "HygonGenuine" so would
> appreciate it someone could find the time to look into the bug in GEM5-1300.
> >>
> >>
> >>
> >> Thanks to everyone for your patience here. I know you've all been
> spammed with failing Nightly errors for some time now. Hopefully after this
> patch is submitted we'll be back to everything passing.
> >>
> >>
> >>
> >> Kind regards,
> >>
> >> Bobby
> >>
> >>
> >>
> >> --
> >>
> >> Dr. Bobby R. Bruce
> >> Room 3050,
> >> Kemper Hall, UC Davis
> >> Davis,
> >> CA, 95616
> >>
> >>
> >>
> >> web: https://www.bobbybruce.net
> >>
> >>
> >>
> >>
> >>
> >> On Wed, Nov 9, 2022 at 2:33 PM Bobby Bruce <bbr...@ucdavis.edu> wrote:
> >>
> >> It turns out this patch:
> https://gem5-review.googlesource.com/c/public/gem5/+/64831 is greatly
> increasing the Linux boot times and therefore causing the timeouts to
> occur. I'll try to find a solution for this. Unfortunately reverting the
> patch isn't an option, changing the CPUID is necessary to run SE mode on
> Ubuntu 22.04 and run Ubuntu 22.04 workloads in FS mode.
> >>
> >>
> >>
> >> We may have to scale back our tests a bit more and run fewer boot tests
> but I'll see if I can come up with some alternatives first.
> >>
> >>
> >>
> >> --
> >>
> >> Dr. Bobby R. Bruce
> >> Room 3050,
> >> Kemper Hall, UC Davis
> >> Davis,
> >> CA, 95616
> >>
> >>
> >>
> >> web: https://www.bobbybruce.net
> >>
> >>
> >>
> >>
> >>
> >> On Tue, Nov 8, 2022 at 11:03 PM jenkins-no-reply--- via gem5-dev <
> gem5-dev@gem5.org> wrote:
> >>
> >> See <
> https://jenkins.gem5.org/job/nightly/413/display/redirect?page=changes>
> >>
> >> Changes:
> >>
> >> [hoanguyen] stdlib: Make the Matched board a package
> >>
> >>
> >> ------------------------------------------
> >> [...truncated 1.93 MB...]
> >>  [    SHCC] NULL/ext/softfloat/f64_eq_signaling.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_isSignalingNaN.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_le.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_le_quiet.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_lt.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_lt_quiet.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_mulAdd.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_mul.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_rem.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_roundToInt.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_sqrt.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_sub.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_f128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_f16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_f32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_i32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_i32_r_minMag.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_i64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_i64_r_minMag.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_ui32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_ui32_r_minMag.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_ui64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/f64_to_ui64_r_minMag.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i32_to_f128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i32_to_f16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i32_to_f32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i32_to_f64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i64_to_f128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i64_to_f16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i64_to_f32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/i64_to_f64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_add128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_add256M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addCarryM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addComplCarryM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addMagsF128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addMagsF16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addMagsF32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addMagsF64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_addM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_approxRecip_1Ks.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_approxRecip32_1.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_approxRecipSqrt_1Ks.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_approxRecipSqrt32_1.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_commonNaNToF128UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_commonNaNToF16UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_commonNaNToF32UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_commonNaNToF64UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_compare128M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_compare96M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_countLeadingZeros16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_countLeadingZeros32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_countLeadingZeros64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_countLeadingZeros8.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_eq128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_f128UIToCommonNaN.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_f16UIToCommonNaN.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_f32UIToCommonNaN.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_f64UIToCommonNaN.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_le128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_lt128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mul128By32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mul128MTo256M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mul128To256M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mul64ByShifted32To128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mul64To128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mul64To128M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mulAddF128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mulAddF16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mulAddF32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_mulAddF64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_negXM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normRoundPackToF128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normRoundPackToF16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normRoundPackToF32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normRoundPackToF64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normSubnormalF128Sig.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normSubnormalF16Sig.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normSubnormalF32Sig.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_normSubnormalF64Sig.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/softfloat_raiseFlags.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/softfloat_state.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_propagateNaNF128UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_propagateNaNF16UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_propagateNaNF32UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_propagateNaNF64UI.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_remStepMBy32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundMToI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundMToUI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackMToI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackMToUI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToF128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToF16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToF32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToF64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToI32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToUI32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundPackToUI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundToI32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundToI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundToUI32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_roundToUI64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shiftRightJam128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shiftRightJam128Extra.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shiftRightJam256M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shiftRightJam32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shiftRightJam64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shiftRightJam64Extra.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftLeft128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftLeft64To96M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRight128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRightExtendM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRightJam128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRightJam128Extra.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRightJam64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRightJam64Extra.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_shortShiftRightM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_sub128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_sub1XM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_sub256M.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_subMagsF128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_subMagsF16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_subMagsF32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_subMagsF64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/s_subM.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui32_to_f128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui32_to_f16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui32_to_f32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui32_to_f64.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui64_to_f128.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui64_to_f16.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui64_to_f32.c -> .os
> >>  [    SHCC] NULL/ext/softfloat/ui64_to_f64.c -> .os
> >> build/NULL/ext/libelf/native-elf-format >
> build/NULL/ext/libelf/native-elf-format.h
> >>  [      M4] NULL/ext/libelf/elf_types.m4, libelf_convert.m4 ->
> libelf_convert.c
> >>  [    SHCC] NULL/ext/libelf/libelf_convert.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_allocate.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_shnum.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_errno.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_shdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_next.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_shdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_strptr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_checksum.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_phdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_getarhdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_rand.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_symshndx.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_cap.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_cntl.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_extended.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_getident.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_align.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_ehdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_scn.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_errmsg.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_phdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_memory.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_shstrndx.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_ar_util.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_move.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_flag.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_phnum.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_syminfo.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_version.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_begin.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_ehdr.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_rela.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_getbase.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_dyn.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_rawfile.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_end.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_open.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_kind.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_ar.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_getclass.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_fill.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_xlate.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_fsize.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_open.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_sym.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_update.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_data.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_rel.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_getarsym.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_xlate.c -> .os
> >>  [    SHCC] NULL/ext/libelf/gelf_checksum.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_data.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_memory.c -> .os
> >>  [    SHCC] NULL/ext/libelf/elf_hash.c -> .os
> >>  [      AR]  -> NULL/ext/softfloat/libsoftfloat.a
> >>  [      M4] NULL/ext/libelf/elf_types.m4, libelf_fsize.m4 ->
> libelf_fsize.c
> >>  [      M4] NULL/ext/libelf/elf_types.m4, libelf_msize.m4 ->
> libelf_msize.c
> >>  [    SHCC] NULL/ext/libelf/libelf_msize.c -> .os
> >>  [    SHCC] NULL/ext/libelf/libelf_fsize.c -> .os
> >>  [  RANLIB]  -> NULL/ext/softfloat/libsoftfloat.a
> >>  [      AR]  -> NULL/ext/libelf/libelf.a
> >>  [  RANLIB]  -> NULL/ext/libelf/libelf.a
> >>  [     CXX] NULL/base/date.cc -> .o
> >>  [    LINK]  -> NULL/gem5.opt
> >> scons: done building targets.
> >> Downloading
> http://dist.gem5.org/dist/develop/arm/aarch-system-20220707.tar.bz2 to
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outxy5qbutz -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-simple-atomic.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-simple-atomic-ALL-x86_64-opt
> >> Starting Test Case: realview-simple-atomic-ALL-x86_64-opt
> >> Test: realview-simple-atomic-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5out91e9qu_s -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-simple-atomic-checkpoint.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-simple-atomic-checkpoint-ALL-x86_64-opt
> >> Starting Test Case: realview-simple-atomic-checkpoint-ALL-x86_64-opt
> >> Test: realview-simple-atomic-checkpoint-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outmkl0ubhc -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-simple-timing.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-simple-timing-ALL-x86_64-opt
> >> Starting Test Case: realview-simple-timing-ALL-x86_64-opt
> >> Test: realview-simple-timing-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5out__l79kx6 -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-switcheroo-atomic.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-switcheroo-atomic-ALL-x86_64-opt
> >> Starting Test Case: realview-switcheroo-atomic-ALL-x86_64-opt
> >> Test: realview-switcheroo-atomic-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outlb4zukoq -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-switcheroo-timing.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-switcheroo-timing-ALL-x86_64-opt
> >> Starting Test Case: realview-switcheroo-timing-ALL-x86_64-opt
> >> Test: realview-switcheroo-timing-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outgsqwx97m -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-o3.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-o3-ALL-x86_64-opt
> >> Starting Test Case: realview-o3-ALL-x86_64-opt
> >> Test: realview-o3-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outb4ijss4c -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-minor.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-minor-ALL-x86_64-opt
> >> Starting Test Case: realview-minor-ALL-x86_64-opt
> >> Test: realview-minor-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outpcsg_al1 -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-switcheroo-noncaching-timing.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite:
> realview-switcheroo-noncaching-timing-ALL-x86_64-opt
> >> Starting Test Case: realview-switcheroo-noncaching-timing-ALL-x86_64-opt
> >> Test: realview-switcheroo-noncaching-timing-ALL-x86_64-opt Failed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outhxjmcjkf -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-switcheroo-o3.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-switcheroo-o3-ALL-x86_64-opt
> >> Starting Test Case: realview-switcheroo-o3-ALL-x86_64-opt
> >> Test: realview-switcheroo-o3-ALL-x86_64-opt Passed
> >> Logging call to command:
> /nobackup/jenkins/workspace/nightly/build/ALL/gem5.opt -d
> /tmp/gem5outnqw3hnn3 -re --silent-redirect
> /nobackup/jenkins/workspace/nightly/tests/gem5/fs/linux/arm/run.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/configs/realview-switcheroo-full.py
> /nobackup/jenkins/workspace/nightly/tests/gem5/resources/arm
> /nobackup/jenkins/workspace/nightly
> >> Starting Test Suite: realview-switcheroo-full-ALL-x86_64-opt
> >> Starting Test Case: realview-switcheroo-full-ALL-x86_64-opt
> >> Test: realview-switcheroo-full-ALL-x86_64-opt Passed
> >> Build timed out (after 1,380 minutes). Marking the build as failed.
> >> Terminated
> >> Build was aborted
> >> Archiving artifacts
> >> _______________________________________________
> >> gem5-dev mailing list -- gem5-dev@gem5.org
> >> To unsubscribe send an email to gem5-dev-le...@gem5.org
> >>
> >> _______________________________________________
> >> gem5-dev mailing list -- gem5-dev@gem5.org
> >> To unsubscribe send an email to gem5-dev-le...@gem5.org
>
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org

Reply via email to