Skip to content

Commit aeff282

Browse files
committed
os_log test failing
Rather than have the entire log format test disabled because of the long-double test, disable just the long-double test itself. Fixes: rdar://41380265
1 parent e3d1483 commit aeff282

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/stdlib/os_log_format.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// RUN: %empty-directory(%t)
22
// RUN: %clang %target-cc-options -g -O0 -isysroot %sdk -I %swift_src_root/stdlib/public/SDK/os -framework Foundation %swift_src_root/stdlib/public/SDK/os/format.m %swift_src_root/stdlib/public/SDK/os/os_trace_blob.c %s -o %t/os_log_format
33
// RUN: %target-run %t/os_log_format | %FileCheck %s
4-
// REQUIRES: rdar41380265
54

65
// REQUIRES: objc_interop
76

@@ -134,7 +133,9 @@
134133
ACCEPT("simple float %f", (float)1.5);
135134
ACCEPT("simple double %f", 1.5);
136135
#ifdef __LP64__
137-
ACCEPT("simple long double %Lf", (long double)1.5);
136+
// Disabled because the upstream clang output for long double changed
137+
// and causes CI fallout
138+
// ACCEPT("simple long double %Lf", (long double)1.5);
138139
#endif
139140

140141
ACCEPT("integer with a static width %666d", 10);

0 commit comments

Comments
 (0)