Tatyana, this commit broke one of the bots: Testing Time: 315.65s ******************** Failing Tests (1): LLDB :: Minidump/dump-all.test
Expected Passes : 1466 Unsupported Tests : 64 Unexpected Failures: 1 I'm a little confused if I look at it because it modifies heavily a test but there's no code change associated? Did you by any chance forget to add a file? Anyway, please take a look and let me know if there's anything I can help you with. Best, -- Davide On Tue, Feb 26, 2019 at 7:37 AM Tatyana Krasnukha via lldb-commits <lldb-commits@lists.llvm.org> wrote: > > Author: tkrasnukha > Date: Tue Feb 26 07:38:30 2019 > New Revision: 354890 > > URL: http://llvm.org/viewvc/llvm-project?rev=354890&view=rev > Log: > Fix short options syntax in Minidump test > > Modified: > lldb/trunk/lit/Minidump/dump-all.test > > Modified: lldb/trunk/lit/Minidump/dump-all.test > URL: > http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Minidump/dump-all.test?rev=354890&r1=354889&r2=354890&view=diff > ============================================================================== > --- lldb/trunk/lit/Minidump/dump-all.test (original) > +++ lldb/trunk/lit/Minidump/dump-all.test Tue Feb 26 07:38:30 2019 > @@ -11,32 +11,32 @@ > # RUN: --check-prefix=CHECKAUX --check-prefix=CHECKMAP \ > # RUN: --check-prefix=CHECKSTAT --check-prefix=CHECKUP > --check-prefix=CHECKFD %s > # RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --directory' | FileCheck --check-prefix=CHECKDIR %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --d' | > FileCheck --check-prefix=CHECKDIR %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -d' | > FileCheck --check-prefix=CHECKDIR %s > # RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --linux' > | \ > # RUN: FileCheck --check-prefix=CHECKCPU --check-prefix=CHECKSTATUS \ > # RUN: --check-prefix=CHECKLSB --check-prefix=CHECKCMD > --check-prefix=CHECKENV \ > # RUN: --check-prefix=CHECKAUX --check-prefix=CHECKMAP > --check-prefix=CHECKSTAT \ > # RUN: --check-prefix=CHECKUP --check-prefix=CHECKFD %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --cpuinfo' | FileCheck --check-prefix=CHECKCPU %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --C' | > FileCheck --check-prefix=CHECKCPU %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --status' > | FileCheck --check-prefix=CHECKSTATUS %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --s' | > FileCheck --check-prefix=CHECKSTATUS %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --cpuinfo' | FileCheck --check-prefix=CHECKCPU %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -C' > | FileCheck --check-prefix=CHECKCPU %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --status' > | FileCheck --check-prefix=CHECKSTATUS %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -s' > | FileCheck --check-prefix=CHECKSTATUS %s > # RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --lsb-release' | FileCheck --check-prefix=CHECKLSB %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --r' | > FileCheck --check-prefix=CHECKLSB %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --cmdline' | FileCheck --check-prefix=CHECKCMD %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --c' | > FileCheck --check-prefix=CHECKCMD %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --environ' | FileCheck --check-prefix=CHECKENV %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --e' | > FileCheck --check-prefix=CHECKENV %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --auxv' | > FileCheck --check-prefix=CHECKAUX %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --x' | > FileCheck --check-prefix=CHECKAUX %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --maps' | > FileCheck --check-prefix=CHECKMAP %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --m' | > FileCheck --check-prefix=CHECKMAP %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --stat' | > FileCheck --check-prefix=CHECKSTAT %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --S' | > FileCheck --check-prefix=CHECKSTAT %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --uptime' > | FileCheck --check-prefix=CHECKUP %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --u' | > FileCheck --check-prefix=CHECKUP %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --fd' | > FileCheck --check-prefix=CHECKFD %s > -# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --f' | > FileCheck --check-prefix=CHECKFD %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -r' > | FileCheck --check-prefix=CHECKLSB %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --cmdline' | FileCheck --check-prefix=CHECKCMD %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -c' > | FileCheck --check-prefix=CHECKCMD %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump > --environ' | FileCheck --check-prefix=CHECKENV %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -e' > | FileCheck --check-prefix=CHECKENV %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --auxv' > | FileCheck --check-prefix=CHECKAUX %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -x' > | FileCheck --check-prefix=CHECKAUX %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --maps' > | FileCheck --check-prefix=CHECKMAP %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -m' > | FileCheck --check-prefix=CHECKMAP %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --stat' > | FileCheck --check-prefix=CHECKSTAT %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -S' > | FileCheck --check-prefix=CHECKSTAT %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --uptime' > | FileCheck --check-prefix=CHECKUP %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -u' > | FileCheck --check-prefix=CHECKUP %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump --fd' > | FileCheck --check-prefix=CHECKFD %s > +# RUN: %lldb -c %p/Inputs/dump-content.dmp -o 'process plugin dump -f' > | FileCheck --check-prefix=CHECKFD %s > # CHECKDIR: RVA SIZE TYPE MinidumpStreamType > # CHECKDIR-NEXT: ---------- ---------- ---------- -------------------------- > # CHECKDIR-NEXT: 0x000000b0 0x00000038 0x00000007 SystemInfo > > > _______________________________________________ > lldb-commits mailing list > lldb-commits@lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits