mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
2885645683
Detects whether we have the Python modules (pygments, yaml) required by opt-viewer and hooks this up to REQUIRES. This fixes https://bugs.llvm.org/show_bug.cgi?id=34129 (the lack of opt-viewer testing). It's also related to https://github.com/apple/swift/pull/12938 and the idea is to expose LLVM_HAVE_OPT_VIEWER_MODULES to the Swift cmake. Differential Revision: https://reviews.llvm.org/D40202 Fixes since the first commit: 1. Disable syntax highlighting as different versions of pygments generate different HTML 2. Use llvm-cxxfilt from the build llvm-svn: 319324
10 lines
466 B
Plaintext
10 lines
466 B
Plaintext
# Since we're performing a full compare of the generate HTML files disable
|
|
# syntax highlighting; pygments generates slightly different code with
|
|
# different versions.
|
|
|
|
RUN: %opt-viewer -s %p/Inputs -o %t %p/Inputs/basic/or.yaml --no-highlight --demangler=llvm-cxxfilt
|
|
RUN: diff %p/Outputs/basic/index.html %t/index.html
|
|
RUN: diff %p/Outputs/basic/basic_or.h.html %t/basic_or.h.html
|
|
RUN: diff %p/Outputs/basic/basic_or.c.html %t/basic_or.c.html
|
|
RUN: ls %t/style.css
|