Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions compiler-rt/test/fuzzer/coverage.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
UNSUPPORTED: target={{.*windows.*}}
# FIXME: CreatePCArray() emits PLT stub addresses for entry blocks, which are ignored by TracePC::PrintCoverage().
UNSUPPORTED: target=s390x{{.*}}
UNSUPPORTED: target=riscv64{{.*}}
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/NullDerefTest.cpp -o %t-NullDerefTest
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/DSO1.cpp -fPIC %ld_flags_rpath_so1 -O0 -shared -o %dynamiclib1
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/DSO2.cpp -fPIC %ld_flags_rpath_so2 -O0 -shared -o %dynamiclib2
Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/test/fuzzer/fork.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# UNSUPPORTED: darwin, target={{.*freebsd.*}}, target=aarch64{{.*}}
# UNSUPPORTED: darwin, target={{.*freebsd.*}}, target=aarch64{{.*}}, target=riscv64{{.*}}
BINGO: BINGO
RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
RUN: not %run %t-SimpleTest -fork=1 2>&1 | FileCheck %s --check-prefix=BINGO
Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/test/fuzzer/fork_corpus_groups.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# UNSUPPORTED: darwin, target={{.*freebsd.*}}, target=aarch64{{.*}}
# UNSUPPORTED: darwin, target={{.*freebsd.*}}, target=aarch64{{.*}}, target=riscv64{{.*}}
BINGO: BINGO
RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
RUN: not %run %t-SimpleTest -fork=1 -fork_corpus_groups=1 2>&1 | FileCheck %s --check-prefix=BINGO
Expand Down
1 change: 1 addition & 0 deletions compiler-rt/test/fuzzer/full-coverage.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
UNSUPPORTED: target={{.*windows.*}}
# FIXME: See coverage.test. Using UNSUPPORTED here due to random failures.
UNSUPPORTED: target=s390x{{.*}}
UNSUPPORTED: target=riscv64{{.*}}
RUN: %cpp_compiler %S/DSO1.cpp -fPIC %ld_flags_rpath_so1 -O0 -shared -o %dynamiclib1
RUN: %cpp_compiler %S/DSO2.cpp -fPIC %ld_flags_rpath_so2 -O0 -shared -o %dynamiclib2
RUN: %cpp_compiler %S/DSOTestMain.cpp %S/DSOTestExtra.cpp %ld_flags_rpath_exe1 %ld_flags_rpath_exe2 -o %t-DSOTest
Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/test/fuzzer/print-func.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
UNSUPPORTED: darwin, target=aarch64{{.*}}
UNSUPPORTED: darwin, target=aarch64{{.*}}, target=riscv64{{.*}}
RUN: %cpp_compiler %S/PrintFuncTest.cpp -o %t
RUN: %run %t -seed=1 -runs=100000 2>&1 | FileCheck %s
RUN: %run %t -seed=1 -runs=100000 -print_funcs=0 2>&1 | FileCheck %s --check-prefix=NO
Expand Down
Loading