mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 15:46:07 +00:00

Several profdata tests pass the byte 012 to printf. This causes these tests to fail when using GnuWin32's version of printf because printf will detect that 012 is the LF character and will prepend the byte 015 (CR) in front of LF. This change is required after https://github.com/llvm/llvm-project/pull/82711 which bumped the version number.
31 lines
1.4 KiB
Plaintext
31 lines
1.4 KiB
Plaintext
// gnuwin32 printf does not work for this test because it will print \15 (CR)
|
|
// whenever \12 (LF) is in the input string.
|
|
UNSUPPORTED: system-windows
|
|
RUN: printf '\201rforpl\377' > %t.profraw
|
|
RUN: printf '\12\0\0\0\0\0\0\0' >> %t.profraw
|
|
// We should fail on this because the binary IDs is not a multiple of 8 bytes.
|
|
RUN: printf '\77\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
|
|
|
|
// Binary IDs - There are only two in this case that are 20 bytes.
|
|
RUN: printf '\24\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\0\1\2\3\4\5\6\7' >> %t.profraw
|
|
RUN: printf '\0\1\2\3\4\5\6\7' >> %t.profraw
|
|
RUN: printf '\0\1\2\3\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\24\0\0\0\0\0\0\0' >> %t.profraw
|
|
RUN: printf '\1\1\1\1\1\1\1\1' >> %t.profraw
|
|
RUN: printf '\2\2\2\2\2\2\2\2' >> %t.profraw
|
|
RUN: printf '\3\3\3\3\0\0\0\0' >> %t.profraw
|
|
|
|
// RUN: not llvm-profdata show --binary-ids %t.profraw 2>&1 | FileCheck %s
|
|
// CHECK: invalid instrumentation profile data (file header is corrupt)
|