Skip to content

Commit 34597f1

Browse files
authored
Merge pull request #12435 from cheshire/fix_fuzzer_tests
2 parents 98949ef + c5c1133 commit 34597f1

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

test/Fuzzing/fuzzer_test.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// RUN: not %t -only_ascii=1 -max_len=3 | %FileCheck %s
33
// REQUIRES: CPU=x86_64
44
// REQUIRES: executable_test
5+
// REQUIRES: fuzzer_runtime
56
// XFAIL: OS=ios
67
// XFAIL: OS=tvos
78
// XFAIL: OS=watchos

test/Fuzzing/fuzzer_test_simpler.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// CHECK: Crash!
44
// REQUIRES: CPU=x86_64
55
// REQUIRES: executable_test
6+
// REQUIRES: fuzzer_runtime
67
// XFAIL: OS=ios
78
// XFAIL: OS=tvos
89
// XFAIL: OS=watchos

test/lit.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,8 @@ runtime_libs = [
933933
('profile', 'profile_runtime'),
934934
('asan', 'asan_runtime'),
935935
('ubsan', 'ubsan_runtime'),
936-
('safestack', 'safestack_runtime')
936+
('safestack', 'safestack_runtime'),
937+
('fuzzer', 'fuzzer_runtime')
937938
]
938939

939940
if run_ptrsize != "32":

0 commit comments

Comments
 (0)